Skip to content

Commit aaf9ca6

Browse files
committed
Chore: Fix documentation Makefile for machines w/o the python cmd
Newer machines don't have `python`, just `python2` and `python3`.
1 parent af32409 commit aaf9ca6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ SRC_MAKE := $(MAKE) -f $(SRC_DIR)/rules.mk
8686

8787
# Parse the JSON file
8888
BUILD_VERSION := $(shell cat $(BUILD_JSON) | \
89-
python -c 'import json, sys; print(json.load(sys.stdin)["message"])')
89+
python3 -c 'import json, sys; print(json.load(sys.stdin)["message"])')
9090

9191
ifeq ($(BUILD_VERSION),)
9292
$(error No build version specified in `$(BUILD_JSON)`.)

0 commit comments

Comments
 (0)