Skip to content

Commit

Permalink
Merge pull request rust-lang#351 from tachibana-lab/no-sign-patches
Browse files Browse the repository at this point in the history
Don't sign commits from patches in sysroot
  • Loading branch information
bjorn3 authored Feb 18, 2019
2 parents bab8113 + 13c20fc commit 8f1a324
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 8f1a324

Please sign in to comment.