Fix options passed to gpg in cargo init

This commit is contained in:
Martin DeMello 2012-12-21 23:13:06 -08:00
parent 8b98e5a296
commit 6c05697667

View File

@ -102,7 +102,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",
~"--verbose",
~"--verify",
sig.to_str(), data.to_str()]);
if res.status != 0 {
return false;