Skip to content

Commit

Permalink
appveyor: Fix a switched condition for cargotest
Browse files Browse the repository at this point in the history
It was intended that EXCLUDE_CARGO *doesn't* run cargotest!
  • Loading branch information
alexcrichton committed Mar 8, 2018
1 parent 5430c0c commit 893e499
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootstrap/mk/Makefile.in
Expand Up @@ -17,9 +17,9 @@ BOOTSTRAP_ARGS :=
endif

ifdef EXCLUDE_CARGO
AUX_ARGS := src/tools/cargo src/tools/cargotest
else
AUX_ARGS :=
else
AUX_ARGS := src/tools/cargo src/tools/cargotest
endif

BOOTSTRAP := $(CFG_PYTHON) $(CFG_SRC_DIR)src/bootstrap/bootstrap.py
Expand Down

0 comments on commit 893e499

Please sign in to comment.