Skip to content

Commit 9152463

Browse files
committed
Merge pull request #4253 from martindemello/patch-1
Fix options passed to gpg in cargo init
2 parents 3ee1d3e + 6c05697 commit 9152463

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)