Skip to content

Commit

Permalink
remove appveyor specific code paths (denoland#3071)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmoritz authored and ry committed Oct 6, 2019
1 parent 351d40e commit 33e3ff5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions core/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 0 additions & 3 deletions tools/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()


Expand Down

0 comments on commit 33e3ff5

Please sign in to comment.