From 1ded281d6068e76a0a0a2ece29c9a6401bf35ca9 Mon Sep 17 00:00:00 2001 From: Ricca665 <84286914+Ricca665@users.noreply.github.com> Date: Sun, 17 Mar 2024 14:47:11 +0100 Subject: [PATCH] Update Makefile Fixes python3 not found when running make on windows --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 986522e7..7ff49e5a 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ ifeq ($(OS),Windows_NT) ifeq ($(TERM),cygwin) PY3 := py -3 # Windows / CMD/PowerShell else - PY3 := python3 # Windows / MSYS2 + PY3 := py # Windows / MSYS2 endif else PY3 := python3 # Unix-like