From 74a6b14276a04eb12bdf986c22f51762fcb19c94 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Wed, 4 Dec 2024 20:57:34 +0100 Subject: [PATCH] Chore: Fix Makefile for building docs --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index f26df7f..20478b0 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -86,7 +86,7 @@ SRC_MAKE := $(MAKE) -f $(SRC_DIR)/rules.mk # Parse the JSON file BUILD_VERSION := $(shell cat $(BUILD_JSON) | \ - python -c 'import json, sys; print(json.load(sys.stdin)["message"])') + python3 -c 'import json, sys; print(json.load(sys.stdin)["message"])') ifeq ($(BUILD_VERSION),) $(error No build version specified in `$(BUILD_JSON)`.)