From 1280a64089358d679e010e48dcd18a3d6657d52e Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Sun, 20 Jan 2013 14:03:57 -0800 Subject: [PATCH] Revert "Fix options passed to gpg in cargo init" As per https://github.com/mozilla/rust/pull/4253 This reverts commit 6c056976678e103f23fd29557174d7718b75a617. --- src/libcargo/pgp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcargo/pgp.rs b/src/libcargo/pgp.rs index 829a82baf7fa..9d90df334e50 100644 --- a/src/libcargo/pgp.rs +++ b/src/libcargo/pgp.rs @@ -106,7 +106,7 @@ fn verify(root: &Path, data: &Path, sig: &Path) -> bool { let path = root.push("gpg"); let res = gpgv(~[~"--homedir", path.to_str(), ~"--keyring", ~"pubring.gpg", - ~"--verify", + ~"--verbose", sig.to_str(), data.to_str()]); if res.status != 0 { return false;