Revert "Fix options passed to gpg in cargo init"

As per https://github.com/mozilla/rust/pull/4253

This reverts commit 6c05697667.
This commit is contained in:
Tim Chevalier 2013-01-20 14:03:57 -08:00
parent b86c90b73a
commit 1280a64089

View file

@ -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;