Skip to content

Commit 8b7f1d0

Browse files
author
Gilad Naaman
committed
libtest: Fixed call to python in run-make
1 parent 100ead3 commit 8b7f1d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/run-make/libtest-json/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ all:
88
$(RUSTC) --test f.rs
99
$(call RUN,f) -Z unstable-options --test-threads=1 --format=json > $(OUTPUT_FILE) || true
1010

11-
cat $(OUTPUT_FILE) | $(PYTHON) validate_json.py
11+
cat $(OUTPUT_FILE) | "$(PYTHON)" validate_json.py
1212

1313
# Compare to output file
1414
diff output.json $(OUTPUT_FILE)

0 commit comments

Comments
 (0)