diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-08-04 10:13:07 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-08-04 10:13:07 -0400 |
commit | aa231ac7d44e9592d817ba17f3d1bdceadca5943 (patch) | |
tree | 6d4a6261b0bcd09715bde02cb28828538f55f123 /commit.d/50vcs-commit | |
parent | fd765cdbdca4a897e21a707fbbfc2aaa0391c1b2 (diff) |
Fix typo of GIT_COMMITTER_EMAIL.
Diffstat (limited to 'commit.d/50vcs-commit')
-rwxr-xr-x | commit.d/50vcs-commit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commit.d/50vcs-commit b/commit.d/50vcs-commit index 1d9ade4..43af353 100755 --- a/commit.d/50vcs-commit +++ b/commit.d/50vcs-commit @@ -55,8 +55,8 @@ if [ "$VCS" = git ] && [ -d .git ]; then fi fi if [ -z "$GIT_COMMITTER_EMAIL" ]; then - GIT_COMMITER_EMAIL="$(git config --global user.email)" || true - export GIT_COMMITER_EMAIL + GIT_COMMITTER_EMAIL="$(git config --global user.email)" || true + export GIT_COMMITTER_EMAIL fi if [ -z "$GIT_AUTHOR_NAME" ]; then |