Merge pull request #98 from evestera/rustc-color-always

Propagate colored output from rustc
pull/99/head^2
olivia hugger 6 years ago committed by GitHub
commit a15b276d96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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();

Loading…
Cancel
Save