2020-09-18 18:43:43 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -e
|
|
|
|
|
set +x
|
|
|
|
|
|
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
|
|
|
cd "$(dirname $0)"
|
|
|
|
|
|
2022-04-01 00:09:38 +02:00
|
|
|
if [[ "$(uname)" == MINGW* || "$(uname)" == MSYS* ]]; then
|
2020-09-18 18:43:43 +02:00
|
|
|
/c/Windows/System32/cmd.exe "/c buildwin.bat"
|
|
|
|
|
else
|
|
|
|
|
echo "ERROR: cannot upload on this platform!" 1>&2
|
|
|
|
|
exit 1;
|
|
|
|
|
fi
|