From 247f9cb8bf261bb331fefa00dd8a8b38fd8759dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Tue, 1 Oct 2024 00:23:27 -0300 Subject: [PATCH] Fix typo. --- projects/macos/make.sh | 2 +- projects/macos/make_no_fw.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/projects/macos/make.sh b/projects/macos/make.sh index 309b2266a..ec5ed0b9d 100755 --- a/projects/macos/make.sh +++ b/projects/macos/make.sh @@ -4,7 +4,7 @@ cd $(dirname "$0") if command -v premake4 &> /dev/null then premake4 --file=../../premake4.lua --use-frameworks gmake -elif command -v premake4 &> /dev/null +elif command -v premake5 &> /dev/null then premake5 --file=../../premake5.lua --use-frameworks gmake2 else diff --git a/projects/macos/make_no_fw.sh b/projects/macos/make_no_fw.sh index c3b6be570..99758345b 100755 --- a/projects/macos/make_no_fw.sh +++ b/projects/macos/make_no_fw.sh @@ -1,11 +1,10 @@ #!/bin/sh cd $(dirname "$0") - if command -v premake4 &> /dev/null then premake4 --file=../../premake4.lua --disable-static-build gmake -elif command -v premake4 &> /dev/null +elif command -v premake5 &> /dev/null then premake5 --file=../../premake5.lua --disable-static-build gmake2 else