From f108649ef0fed6e9402c20b09a4ba99fd138b4aa Mon Sep 17 00:00:00 2001 From: Rokas Puzonas Date: Thu, 3 Aug 2023 08:37:33 +0300 Subject: [PATCH] use python3 to statically host files --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3cbbdaf..278e852 100644 --- a/Makefile +++ b/Makefile @@ -148,7 +148,7 @@ $(BUILD_DIR)/%.o: src/%.cpp Makefile # Run the executable run: ifeq ($(PLATFORM), web) - python -m http.server 8080 -d $(BUILD_DIR) + python3 -m http.server 8080 -d $(BUILD_DIR) else $(MAIN_TARGET) $(ARGS) endif