From 8e93ab4d9f725b003d68953a3f4f7d1437742e46 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 1 Nov 2015 23:22:44 +0000 Subject: [PATCH] quotes --- functions/fn_check_steamuser | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/fn_check_steamuser b/functions/fn_check_steamuser index 5080c98d8..e62086201 100644 --- a/functions/fn_check_steamuser +++ b/functions/fn_check_steamuser @@ -2,16 +2,16 @@ # LGSM fn_check_steamuser function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 040715 +# Version: 011115 if [ -z "${steamuser}" ]||[ "${steamuser}" == "username" ]; then fn_printwarnnl "Steam login not set. Using anonymous login." - if [ -d ${scriptlogdir} ]; then + if [ -d "${scriptlogdir}" ]; then fn_scriptlog "Steam login not set. Using anonymous login." fi if [ "${steamuser}" == "username" ]; then echo " * Change steamuser=\"username\" to a valid steam login." - if [ -d ${scriptlogdir} ]; then + if [ -d "${scriptlogdir}" ]; then fn_scriptlog "Change steamuser=\"username\" to a valid steam login." fi fi