This commit is contained in:
Samuel Attard
2024-06-14 12:15:47 -05:00
parent 1a0bac3328
commit 89d77e39f4

View File

@@ -7,7 +7,11 @@ if [ "`uname`" == "Darwin" ]; then
BUILD_TYPE="mas"
fi
elif [ "`uname`" == "Linux" ]; then
BUILD_TYPE="linux"
if [ "$ELECTRON_DEPOT_TOOLS_WIN_TOOLCHAIN" == "1" ]; then
BUILD_TYPE="windows"
else
BUILD_TYPE="linux"
fi
else
echo "Unsupported platform"
exit 1