diff options
author | Christian Moritz <chrmoritz@users.noreply.github.com> | 2019-10-06 03:19:00 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-10-05 21:19:00 -0400 |
commit | 33e3ff5de8e95d659c151b68a1931b5da05c5740 (patch) | |
tree | 392d8b649f2275c87a367dfee32e7fa39ceeaaf3 | |
parent | 351d40e51cd5fc09c36df93da890d16587f29756 (diff) |
remove appveyor specific code paths (#3071)
-rw-r--r-- | core/build.rs | 2 | ||||
-rw-r--r-- | tools/util.py | 3 |
2 files changed, 0 insertions, 5 deletions
diff --git a/core/build.rs b/core/build.rs index ead65476a..64b5ca47b 100644 --- a/core/build.rs +++ b/core/build.rs @@ -51,8 +51,6 @@ mod gn { // Tell Cargo when to re-run this file. We do this first, so these directives // can take effect even if something goes wrong later in the build process. println!("cargo:rerun-if-env-changed=DENO_BUILD_PATH"); - // TODO: this is obviously not appropriate here. - println!("cargo:rerun-if-env-changed=APPVEYOR_REPO_COMMIT"); // This helps Rust source files locate the snapshot, source map etc. println!("cargo:rustc-env=GN_OUT_DIR={}", gn_out_dir); diff --git a/tools/util.py b/tools/util.py index 93502b06d..9a4c0ce02 100644 --- a/tools/util.py +++ b/tools/util.py @@ -236,9 +236,6 @@ def parse_exit_code(s): def enable_ansi_colors(): if os.name != 'nt': return True # On non-windows platforms this just works. - elif "CI" in os.environ: - return True # Ansi escape codes work out of the box on Appveyor. - return enable_ansi_colors_win10() |