Merge pull request #4253 from martindemello/patch-1

Fix options passed to gpg in cargo init
This commit is contained in:
Tim Chevalier 2012-12-23 13:37:36 -08:00
commit 915246314b

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;