diff options
| author | Brian Anderson <banderson@mozilla.com> | 2013-08-29 14:20:48 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2013-08-29 14:23:44 -0700 |
| commit | 3c5a43e5b6f857c71c6f66dbbd640a47d34a0e7e (patch) | |
| tree | c2bf9ab63ff4c20dbe5a43660fdd919ae822c9b9 /src/librustpkg/source_control.rs | |
| parent | 698873e3a829d764b451f657178403c704044721 (diff) | |
| download | rust-3c5a43e5b6f857c71c6f66dbbd640a47d34a0e7e.tar.gz rust-3c5a43e5b6f857c71c6f66dbbd640a47d34a0e7e.zip | |
Revert "auto merge of #8645 : alexcrichton/rust/issue-6436-run-non-blocking, r=brson"
This reverts commit b8d1fa399402c71331aefd634d710004e00b73a6, reversing changes made to f22b4b169854c8a4ba86c16ee43327d6bcf94562. Conflicts: mk/rt.mk src/libuv
Diffstat (limited to 'src/librustpkg/source_control.rs')
| -rw-r--r-- | src/librustpkg/source_control.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustpkg/source_control.rs b/src/librustpkg/source_control.rs index c67a8158139..caa004a53b2 100644 --- a/src/librustpkg/source_control.rs +++ b/src/librustpkg/source_control.rs @@ -89,7 +89,7 @@ pub fn git_clone_general(source: &str, target: &Path, v: &Version) -> bool { fn process_output_in_cwd(prog: &str, args: &[~str], cwd: &Path) -> ProcessOutput { let mut prog = Process::new(prog, args, ProcessOptions{ dir: Some(cwd) - ,..ProcessOptions::new()}).unwrap(); + ,..ProcessOptions::new()}); prog.finish_with_output() } |
