1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

Add color to rustc output (except windows)

This commit is contained in:
Ryan Dahl 2018-07-12 14:02:03 -04:00
parent 24b0e91d80
commit ad4f335847

View file

@ -43,6 +43,9 @@ template("run_rustc") {
"--crate-name=$crate_name",
"--crate-type=$crate_type",
]
if (!is_win) {
args += [ "--color=always" ]
}
if (defined(is_test) && is_test) {
# Test outputs are executables which should be in root_out_dir.