diff --git a/install_helper.sh b/install_helper.sh index f0f158d..9e9e5fc 100755 --- a/install_helper.sh +++ b/install_helper.sh @@ -3,10 +3,12 @@ if ! go version &>/dev/null; then echo echo "===========================================================================" + echo echo "Please INSTALL GOLANG and run this again" echo if [ "$(uname)" = "Darwin" ]; then echo 'You can probably use `brew install go`.' + echo echo "===========================================================================" echo exit 1 @@ -15,17 +17,20 @@ if ! go version &>/dev/null; then if [ "${ID}" = "ubuntu" ]; then echo 'You can probably use `sudo snap install go --classic` (gets latest golang - RECOMMENDED)' echo 'OR `sudo apt install go` (this might give you old golang)' + echo echo "===========================================================================" echo exit 1 elif [ "${ID_LIKE}" = "debian" ]; then echo 'You can probably use `sudo apt install go`' + echo echo "===========================================================================" echo exit 1 fi fi echo "It's recomended to use your favourite package manager." + echo echo "===========================================================================" echo exit 1