From f09723d7756a5ec343ca70d32c0b7c98dafb3da7 Mon Sep 17 00:00:00 2001 From: lowercase-donkey <lowercasedonkey@gmail.com> Date: Mon, 8 Jul 2019 10:59:55 -0400 Subject: [PATCH] win support for compile.sh --- compile.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compile.sh b/compile.sh index e95ba242189..5f404f908d2 100755 --- a/compile.sh +++ b/compile.sh @@ -43,6 +43,8 @@ function compile { echoMessage "x64 arch" if [ "$(uname -s)" = "Darwin" ]; then TWEEGO_EXE="./devTools/tweeGo/tweego_osx64" + elif [ $OSTYPE = "msys" ]; then + TWEEGO_EXE="./devTools/tweeGo/tweego_win64" else TWEEGO_EXE="./devTools/tweeGo/tweego_nix64" fi @@ -51,6 +53,8 @@ function compile { echoMessage "x86 arch" if [ "$(uname -s)" = "Darwin" ]; then TWEEGO_EXE="./devTools/tweeGo/tweego_osx86" + elif [ $OSTYPE = "msys" ]; then + TWEEGO_EXE="./devTools/tweeGo/tweego_win86" else TWEEGO_EXE="./devTools/tweeGo/tweego_nix86" fi -- GitLab