Skip to content

Commit 4d5413b

Browse files
Fix gpg signing in manifest builder
GPG versions 2.x+ require that --batch be passed if --passphrase-fd is to be accepted.
1 parent 8375ab4 commit 4d5413b

File tree

1 file changed

+1
-0
lines changed
  • src/tools/build-manifest/src

1 file changed

+1
-0
lines changed

src/tools/build-manifest/src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ impl Builder {
623623
let mut cmd = Command::new("gpg");
624624
cmd.arg("--no-tty")
625625
.arg("--yes")
626+
.arg("--batch")
626627
.arg("--passphrase-fd").arg("0")
627628
.arg("--personal-digest-preferences").arg("SHA512")
628629
.arg("--armor")

0 commit comments

Comments
 (0)