Skip to content

Commit 1280a64

Browse files
committed
Revert "Fix options passed to gpg in cargo init"
As per rust-lang#4253 This reverts commit 6c05697.
1 parent b86c90b commit 1280a64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcargo/pgp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ fn verify(root: &Path, data: &Path, sig: &Path) -> bool {
106106
let path = root.push("gpg");
107107
let res = gpgv(~[~"--homedir", path.to_str(),
108108
~"--keyring", ~"pubring.gpg",
109-
~"--verify",
109+
~"--verbose",
110110
sig.to_str(), data.to_str()]);
111111
if res.status != 0 {
112112
return false;

0 commit comments

Comments
 (0)