From f874e93bc390e115db8e4a22ca2e67fac89e0f49 Mon Sep 17 00:00:00 2001 From: Simon Let Date: Fri, 24 May 2019 13:15:41 +0200 Subject: [PATCH] visual install tweak --- install_helper.sh | 5 +++++ 1 file changed, 5 insertions(+) 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