diff options
author | Bert Belder <bertbelder@gmail.com> | 2018-09-24 12:05:03 -0700 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2018-09-24 13:45:03 -0700 |
commit | af3f62eedf38a1455334298d812f8b033567d230 (patch) | |
tree | c134f6932a0d30565cf38cb4df83d2abf1f3cb2f | |
parent | 2e3a8b495d5d6c5ad595d65cedafcc2b0d75d559 (diff) |
build: enable rust color output on windows
-rw-r--r-- | build_extra/rust/rust.gni | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/build_extra/rust/rust.gni b/build_extra/rust/rust.gni index aaf111676..6e2b8b72e 100644 --- a/build_extra/rust/rust.gni +++ b/build_extra/rust/rust.gni @@ -85,9 +85,7 @@ template("run_rustc") { args += [ "-Dwarnings" ] } - if (!is_win) { - args += [ "--color=always" ] - } + args += [ "--color=always" ] if (!defined(crate_version)) { crate_name_and_version = crate_name |