diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-01-20 14:03:57 -0800 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-01-20 14:05:07 -0800 |
| commit | 1280a64089358d679e010e48dcd18a3d6657d52e (patch) | |
| tree | baee1a64bd16f30a2bac0ccbaec4309d1084d258 | |
| parent | b86c90b73a31fda69a78f251cf7cebdb86fcdba5 (diff) | |
| download | rust-1280a64089358d679e010e48dcd18a3d6657d52e.tar.gz rust-1280a64089358d679e010e48dcd18a3d6657d52e.zip | |
Revert "Fix options passed to gpg in cargo init"
As per https://github.com/mozilla/rust/pull/4253 This reverts commit 6c056976678e103f23fd29557174d7718b75a617.
| -rw-r--r-- | src/libcargo/pgp.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcargo/pgp.rs b/src/libcargo/pgp.rs index 829a82baf7f..9d90df334e5 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; |
