diff options
| author | liv <liv@fastmail.com> | 2019-01-25 15:11:23 +0100 |
|---|---|---|
| committer | liv <liv@fastmail.com> | 2019-01-25 15:11:23 +0100 |
| commit | 320119ce96d27b5731d2d48092deb500785f553f (patch) | |
| tree | aafa4862d1245adfa3708f131b6413e24eec111c /src/run.rs | |
| parent | df3389cfb04d575b7fdee92e0dac42efd901a025 (diff) | |
add "--color always" to the other rustc commands
Diffstat (limited to 'src/run.rs')
| -rw-r--r-- | src/run.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ pub fn run(matches: clap::ArgMatches) { 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.set_message(format!("Running {}...", filename).as_str()); |
