From 8f00baaaadb1db156147c66561c527de8365f958 Mon Sep 17 00:00:00 2001 From: FezVrasta Date: Mon, 22 Jun 2015 10:38:14 +0200 Subject: [PATCH] fixed typo --- netinstall.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netinstall.sh b/netinstall.sh index 86d3110..5e64414 100644 --- a/netinstall.sh +++ b/netinstall.sh @@ -21,15 +21,15 @@ rm -f master.tar.gz rm -rf /tmp/ark-server-tools-master -if [ $status -eq 0 ]; then +if [ "$status" -eq "0" ]; then echo "ARK Server Tools were correctly installed in your system inside the home directory of $1!" fi -if [ $status -eq 1 ]; then +if [ "$status" -eq "1" ]; then echo "Something where wrong :(" fi -if [ $status -eq 2 ]; then +if [ "$status" -eq "2" ]; then echo "WARNING: A previous version of ARK Server Tools was detected in your system, your old configuration was not overwritten. You may need to manually update it." echo "ARK Server Tools were correctly installed in your system inside the home directory of $1!" fi