about summary refs log tree commit diff
path: root/build_sysroot
diff options
context:
space:
mode:
authorMilkey Mouse <milkeymouse@meme.institute>2019-02-17 17:42:12 -0800
committerMilkey Mouse <milkeymouse@meme.institute>2019-02-17 17:42:12 -0800
commit13c20fc8033b3925abee3743f76f3679547ee413 (patch)
treea77bca7f2fa126d7cb2167039c5931cb65038c50 /build_sysroot
parentbab8113954bd24e63a1e51f00088d761560ddd98 (diff)
downloadrust-13c20fc8033b3925abee3743f76f3679547ee413.tar.gz
rust-13c20fc8033b3925abee3743f76f3679547ee413.zip
Don't sign commits from patches in sysroot
This is really annoying when commit.gpgSign is enabled globally.
Diffstat (limited to 'build_sysroot')
-rwxr-xr-xbuild_sysroot/prepare_sysroot_src.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_sysroot/prepare_sysroot_src.sh b/build_sysroot/prepare_sysroot_src.sh
index fceccdb4dea..c96c3b36ba2 100755
--- a/build_sysroot/prepare_sysroot_src.sh
+++ b/build_sysroot/prepare_sysroot_src.sh
@@ -24,7 +24,7 @@ git commit -m "Initial commit" -q
 for file in $(ls ../../patches/ | grep -v patcha); do
 echo "[GIT] apply" $file
 git apply ../../patches/$file
-git commit -am "Patch $file"
+git commit --no-gpg-sign -am "Patch $file"
 done
 popd