From 85a924b7dd677bcbe57794827543871d1835b635 Mon Sep 17 00:00:00 2001
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
Date: Thu, 7 Apr 2016 01:39:54 -0500
Subject: [PATCH] Move comment to its proper location

---
 scripts/applyPatches.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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