David Balatero db1efe51f8 Added developer setup script for smoother setup
Moved run-osx.sh to scripts/ subdirectory
2017-11-30 01:24:06 -08:00

19 lines
346 B
Bash
Executable File

#!/usr/bin/env bash
OS=$(uname -s)
function is_macos() {
[[ "$OS" =~ Darwin ]]
}
function exit_unless_mac() {
if ! is_macos; then
cecho "@red[[This install script currently supports Mac OS X only. To
manually install, please visit the wiki for more information:]]
@blue[[https://wiki.status.im/Building_Status]]"
echo
fi
}