From 21a52f89ea301ae55d5ef41eaa7e10181157fa42 Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Tue, 18 Mar 2025 12:52:52 +0000 Subject: [PATCH] fix: disable gpg sign for noir bootstrap --- noir/scripts/sync.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noir/scripts/sync.sh b/noir/scripts/sync.sh index df0de7a8dc1f..d3c0269f4f21 100755 --- a/noir/scripts/sync.sh +++ b/noir/scripts/sync.sh @@ -195,7 +195,7 @@ function latest_nightly { # Create an empty marker commit to show that patches have been applied or put in a patch file. function commit_patch_marker { - git -C noir-repo commit -m "$PATCH_COMMIT_MSG" --allow-empty + git -C noir-repo commit -m "$PATCH_COMMIT_MSG" --allow-empty --no-gpg-sign } # Apply the fixup script and any local patch file. @@ -203,7 +203,7 @@ function patch_repo { log Applying fixup on noir-repo # Redirect the `bb` reference to the local one. scripts/sync-in-fixup.sh - git -C noir-repo add . && git -C noir-repo commit -m "$FIXUP_COMMIT_MSG" --allow-empty + git -C noir-repo add . && git -C noir-repo commit -m "$FIXUP_COMMIT_MSG" --allow-empty --no-gpg-sign # Apply any patch file. if [ -f $NOIR_REPO_PATCH ]; then log Applying patches from $NOIR_REPO_PATCH