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"