Merge pull request #351 from tachibana-lab/no-sign-patches

Don't sign commits from patches in sysroot
This commit is contained in:
bjorn3 2019-02-18 08:23:34 +01:00 committed by GitHub
commit 8f1a324f07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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