Skip to content

Commit 472797b

Browse files
committed
librustc: Lots of de-muting. rs=demuting
1 parent 2bc9655 commit 472797b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+2433
-2085
lines changed

src/libcargo/pgp.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ pub fn init(root: &Path) {
8181
let p = root.push("gpg");
8282
if !os::path_is_dir(&p) {
8383
os::make_dir(&p, 0x1c0i32);
84-
let p = run::start_program(~"gpg", ~[~"--homedir",
85-
p.to_str(),
86-
~"--import"]);
84+
let mut p = run::start_program(~"gpg", ~[~"--homedir",
85+
p.to_str(),
86+
~"--import"]);
8787
p.input().write_str(signing_key());
8888
let s = p.finish();
8989
if s != 0 {

0 commit comments

Comments
 (0)