mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-06 05:45:03 +00:00
19 lines
346 B
Bash
19 lines
346 B
Bash
|
#!/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
|
||
|
}
|