medfall

A super great game engine
Log | Files | Refs

commit 05a9ee7282295d3b0fded4a69e963b791b50e68c
parent 516febfa333008e4f0aeeba6027c8b49e2addbfc
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Thu Jul  6 21:47:07 +0300

Mark launch(.exe) as OS specific

Diffstat:
scripts/make_release.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/make_release.sh b/scripts/make_release.sh @@ -5,9 +5,9 @@ find . -type f | xargs chmod 644 mkdir release file_platform() { - if [ "$1" = "medfall.exe" ]; then + if [ "$1" = "medfall.exe" ] || [ "$1" = "launch.exe" ]; then echo " windows32" - elif [ "$1" = "medfall" ]; then + elif [ "$1" = "medfall" ] || [ "$1" = "launch" ]; then echo " linux64" fi }