Skip to content

Commit b185867

Browse files
committedDec 13, 2018
Add --pinentry-mode=loopback to deployment script
Apparently this changed with gpg2 or... something like that?

File tree

1 file changed

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

1 file changed

+2
-1
lines changed
 

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,8 @@ impl Builder {
621621
let asc = self.output.join(format!("{}.asc", filename));
622622
println!("signing: {:?}", path);
623623
let mut cmd = Command::new("gpg");
624-
cmd.arg("--no-tty")
624+
cmd.arg("--pinentry-mode=loopback")
625+
.arg("--no-tty")
625626
.arg("--yes")
626627
.arg("--batch")
627628
.arg("--passphrase-fd").arg("0")

0 commit comments

Comments
 (0)
Please sign in to comment.