Skip to content

Commit cdcca78

Browse files
committed
Auto merge of #48832 - alexcrichton:fix-skip-cargo, r=alexcrichton
appveyor: Fix a switched condition for cargotest It was intended that EXCLUDE_CARGO *doesn't* run cargotest!
2 parents 5430c0c + 893e499 commit cdcca78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/mk/Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ BOOTSTRAP_ARGS :=
1717
endif
1818

1919
ifdef EXCLUDE_CARGO
20-
AUX_ARGS := src/tools/cargo src/tools/cargotest
21-
else
2220
AUX_ARGS :=
21+
else
22+
AUX_ARGS := src/tools/cargo src/tools/cargotest
2323
endif
2424

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

0 commit comments

Comments
 (0)