Don't sign commits from patches in sysroot

This is really annoying when commit.gpgSign is enabled globally.
This commit is contained in:
Milkey Mouse 2019-02-17 17:42:12 -08:00
parent bab8113954
commit 13c20fc803
No known key found for this signature in database
GPG Key ID: C6EF5A02F5647987

View File

@ -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