2018-03-06 23:37:48 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# Pick the correct install script based on the current OS
|
|
|
|
|
|
|
|
util_dir=$(dirname "$0")
|
|
|
|
|
|
|
|
case $(uname) in
|
|
|
|
Darwin)
|
|
|
|
exec "${util_dir}/macos_install.sh"
|
|
|
|
;;
|
|
|
|
Linux)
|
|
|
|
exec "${util_dir}/linux_install.sh"
|
|
|
|
;;
|
2018-08-02 23:43:51 +02:00
|
|
|
MSYS_NT*|MINGW_64*)
|
2018-03-06 23:37:48 +01:00
|
|
|
exec "${util_dir}/msys2_install.sh"
|
|
|
|
;;
|
|
|
|
esac
|