Fix typo.

This commit is contained in:
Martín Lucas Golini
2024-10-01 00:23:27 -03:00
parent 330f556af0
commit 247f9cb8bf
2 changed files with 2 additions and 3 deletions

View File

@@ -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

View File

@@ -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