Skip to content

Commit 6c05697

Browse files
committed
Fix options passed to gpg in cargo init
1 parent 8b98e5a commit 6c05697

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcargo/pgp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ fn verify(root: &Path, data: &Path, sig: &Path) -> bool {
102102
let path = root.push("gpg");
103103
let res = gpgv(~[~"--homedir", path.to_str(),
104104
~"--keyring", ~"pubring.gpg",
105-
~"--verbose",
105+
~"--verify",
106106
sig.to_str(), data.to_str()]);
107107
if res.status != 0 {
108108
return false;

0 commit comments

Comments
 (0)