From 75a78dfef090227720d1675cf799ee511ebb1452 Mon Sep 17 00:00:00 2001 From: jomo Date: Tue, 1 Sep 2015 23:59:43 +0200 Subject: [PATCH] Fix #25 which -s is not available on all platforms --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 3748cca..336376f 100755 --- a/setup.sh +++ b/setup.sh @@ -4,7 +4,7 @@ set -e for cmd in curl java unzip git pip; do - if ! which -s "$cmd"; then + if ! which "$cmd" >/dev/null; then tput setf 4 >&2 echo "Error: please install '$cmd' to proceed" >&2 tput sgr0 >&2 @@ -172,4 +172,4 @@ echo "eula=true" > eula.txt echo -e "\n> $(tput setf 2)All Done! $(tput sgr0)Don't forget to configure plugins for your needs." echo "> Run redstoner/server/start.sh to start the server" -echo "> Our plugins are in redstoner/server/plugins/redstoner-utils.py.dir" \ No newline at end of file +echo "> Our plugins are in redstoner/server/plugins/redstoner-utils.py.dir"