From ebab9687664b4d06b9e7a672d089a63bd64a66e8 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Sun, 25 Nov 2018 17:24:51 -0500 Subject: [PATCH] fix string comparison --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 4612dd7..4f53990 100755 --- a/install.sh +++ b/install.sh @@ -14,15 +14,15 @@ fi # source vars source vars -if [ $user -eq "" ] ; then +if [ $user = "" ] ; then echo -e "User missing from vars." exit 1 fi -if [ $projectname -eq "" ] ; then +if [ $projectname = "" ] ; then echo -e "Project Name missing from vars." exit 1 fi -if [ $hostname -eq "" ] ; then +if [ $hostname = "" ] ; then echo -e "Hostname missing from vars." exit 1 fi