summaryrefslogtreecommitdiff
path: root/commit.d
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-07-31 11:33:40 -0400
committerJoey Hess <joey@kitenet.net>2013-07-31 11:33:40 -0400
commit029bf430efa727eed896c9a16c0d9645228daa41 (patch)
tree147f9dba332c99dd4e158c1c9ca6a623ac84d9b4 /commit.d
parentf2b85e0e5ca4024f27825d74be040b9274cde90c (diff)
Fix hilarious typo hardcoding my name. Closes: #718425
Diffstat (limited to 'commit.d')
-rwxr-xr-xcommit.d/50vcs-commit2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit.d/50vcs-commit b/commit.d/50vcs-commit
index bc40789..3a4c819 100755
--- a/commit.d/50vcs-commit
+++ b/commit.d/50vcs-commit
@@ -43,7 +43,7 @@ if [ "$VCS" = git ] && [ -d .git ]; then
if [ -n "$USER" ]; then
# Use user.name and user.email from the gitconfig belonging
# to the user who became root.
- USER_HOME="$(perl -e 'print ((getpwnam("joey"))[7])')"
+ USER_HOME="$(perl -e 'print ((getpwnam(shift()))[7])' "$USER")"
if [ -n "$USER_HOME" ] && [ -e "$USER_HOME/.gitconfig" ]; then
if [ -z "$GIT_AUTHOR_NAME" ]; then
GIT_AUTHOR_NAME="$(git config -f "$USER_HOME/.gitconfig" user.name)" || true