fix string comparison again

This commit is contained in:
ducoterra
2018-11-25 17:26:09 -05:00
parent ebab968766
commit 54df19f71a

View File

@@ -14,15 +14,15 @@ fi
# source vars # source vars
source vars source vars
if [ $user = "" ] ; then if [ $user == "" ] ; then
echo -e "User missing from vars." echo -e "User missing from vars."
exit 1 exit 1
fi fi
if [ $projectname = "" ] ; then if [ $projectname == "" ] ; then
echo -e "Project Name missing from vars." echo -e "Project Name missing from vars."
exit 1 exit 1
fi fi
if [ $hostname = "" ] ; then if [ $hostname == "" ] ; then
echo -e "Hostname missing from vars." echo -e "Hostname missing from vars."
exit 1 exit 1
fi fi