From 13c20fc8033b3925abee3743f76f3679547ee413 Mon Sep 17 00:00:00 2001 From: Milkey Mouse Date: Sun, 17 Feb 2019 17:42:12 -0800 Subject: [PATCH] Don't sign commits from patches in sysroot This is really annoying when commit.gpgSign is enabled globally. --- build_sysroot/prepare_sysroot_src.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_sysroot/prepare_sysroot_src.sh b/build_sysroot/prepare_sysroot_src.sh index fceccdb4deaa6..c96c3b36ba203 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