diff options
author | Zach Brown <[email protected]> | 2016-04-07 01:39:54 -0500 |
---|---|---|
committer | Zach Brown <[email protected]> | 2016-04-07 01:39:54 -0500 |
commit | baa0270275d7a49b6130c6ab7747734dbecafe6d (patch) | |
tree | 8af0a2e2cb04d709e4c32d9a75152cf183336d27 /scripts | |
parent | 348e6968c3284c70639321eabf63590277ff2ab1 (diff) | |
download | Paper-baa0270275d7a49b6130c6ab7747734dbecafe6d.tar.gz Paper-baa0270275d7a49b6130c6ab7747734dbecafe6d.zip |
Move comment to its proper location
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/applyPatches.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/applyPatches.sh b/scripts/applyPatches.sh index 4533855757..890412a4ff 100755 --- a/scripts/applyPatches.sh +++ b/scripts/applyPatches.sh @@ -43,7 +43,6 @@ function applyPatch { function enableCommitSigningIfNeeded { if [[ "$gpgsign" == "true" ]]; then - # Yes, this has to be global git config --global commit.gpgsign true fi } @@ -52,6 +51,7 @@ function enableCommitSigningIfNeeded { # There is also zero rational or logical reason to do so for these sub-repo AMs. # Calm down kids, it's re-enabled (if needed) immediately after, pass or fail. if [[ "$gpgsign" == "true" ]]; then + # Yes, this has to be global git config --global commit.gpgsign false fi |