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 | |
parent | fd765cdbdca4a897e21a707fbbfc2aaa0391c1b2 (diff) |
Fix typo of GIT_COMMITTER_EMAIL.
-rwxr-xr-x | commit.d/50vcs-commit | 4 | ||||
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | doc/todo/Correct_misspelling_of___34__committer__34__.mdwn | 1 |
3 files changed, 4 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 diff --git a/debian/changelog b/debian/changelog index cd12ca5..7f99d09 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ etckeeper (1.18.2) UNRELEASED; urgency=medium * Initial FreeBSD support with pkgng plugin. (William Johansson) * Fix README.md symlink in package (Sebastian Schmidt, Antoine Beaupré, closes: #791566) + * Fix typo of GIT_COMMITTER_EMAIL. -- Joey Hess <id@joeyh.name> Mon, 01 Jun 2015 09:15:34 -0400 diff --git a/doc/todo/Correct_misspelling_of___34__committer__34__.mdwn b/doc/todo/Correct_misspelling_of___34__committer__34__.mdwn index 9ecd90d..2f0fc92 100644 --- a/doc/todo/Correct_misspelling_of___34__committer__34__.mdwn +++ b/doc/todo/Correct_misspelling_of___34__committer__34__.mdwn @@ -4,3 +4,4 @@ https://github.com/joeyh/etckeeper/blob/master/commit.d/50vcs-commit#L58-L59 This is causing git to incorrectly attribute commits to root instead of the name and email specified in ~/.gitconfig. +> [[fixed|done]] --[[Joey]] |