diff options
| author | olivia hugger <olivia@fastmail.com> | 2018-11-26 11:11:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-26 11:11:35 +0100 |
| commit | a15b276d96cb65b19397b525e219c5c95cf940a4 (patch) | |
| tree | 73e634fcec304b48a5d65e44d68cb86ab747ad61 /src/main.rs | |
| parent | 1d495ff7b9c0a9d638576558d409533e80ba2330 (diff) | |
| parent | f18590f0a1006b526e7e79089e06e8f10de688da (diff) | |
Merge pull request #98 from evestera/rustc-color-always
Propagate colored output from rustc
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index e84dff7..71e2925 100644 --- a/src/main.rs +++ b/src/main.rs @@ -157,7 +157,7 @@ fn compile_only(filename: &str) { bar.set_message(format!("Compiling {}...", filename).as_str()); bar.enable_steady_tick(100); let compilecmd = Command::new("rustc") - .args(&[filename, "-o", "temp"]) + .args(&[filename, "-o", "temp", "--color", "always"]) .output() .expect("fail"); bar.finish_and_clear(); |
