5 lines
90 B
Bash
5 lines
90 B
Bash
if [[ "$OSTYPE" == "msys" ]]; then
|
|
./build-msys2.sh "$@"
|
|
else
|
|
./build-unix.sh "$@"
|
|
fi
|