Skip to content

Commit

Permalink
Don't sign commits from patches in sysroot
Browse files Browse the repository at this point in the history
This is really annoying when commit.gpgSign is enabled globally.
  • Loading branch information
milkey-mouse committed Feb 18, 2019
1 parent bab8113 commit 13c20fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_sysroot/prepare_sysroot_src.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 13c20fc

Please sign in to comment.