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/verify.rs | |
| parent | df3389cfb04d575b7fdee92e0dac42efd901a025 (diff) | |
add "--color always" to the other rustc commands
Diffstat (limited to 'src/verify.rs')
| -rw-r--r-- | src/verify.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verify.rs b/src/verify.rs index 9aa3a4b..eb609ab 100644 --- a/src/verify.rs +++ b/src/verify.rs @@ -84,7 +84,7 @@ pub fn test(filename: &str) -> Result<(), ()> { bar.set_message(format!("Testing {}...", filename).as_str()); bar.enable_steady_tick(100); let testcmd = Command::new("rustc") - .args(&["--test", filename, "-o", "temp"]) + .args(&["--test", filename, "-o", "temp", "--color", "always"]) .output() .expect("fail"); bar.finish_and_clear(); |
