which -s is not available on all platforms
This commit is contained in:
jomo
2015-09-01 23:59:43 +02:00
parent 945cc977a7
commit 75a78dfef0

View File

@@ -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"
echo "> Our plugins are in redstoner/server/plugins/redstoner-utils.py.dir"