diff --git a/functions/fn_csgofix b/functions/fn_csgofix index df8127cbb..7da66bf32 100644 --- a/functions/fn_csgofix +++ b/functions/fn_csgofix @@ -11,7 +11,7 @@ if [ ! -f "${filesdir}/steam_appid.txt" ]; then fn_printinfo "Applying 730 steam_appid.txt Fix." sleep 1 echo -en "\n" - echo -n "730" >> ${filesdir}/steam_appid.txt + echo -n "730" >> "${filesdir}/steam_appid.txt" fi } diff --git a/functions/fn_details b/functions/fn_details index bfec2fce8..c3cc8d6b5 100644 --- a/functions/fn_details +++ b/functions/fn_details @@ -28,7 +28,7 @@ echo "Ports the server is currently using." echo "" echo "DIRECTION DESCRIPTION PORT" echo "INBOUND Game/RCON port ${port}" -if [ ! -z ${sourcetvport} ]; then +if [ ! -z "${sourcetvport}" ]; then echo "INBOUND SourceTV port ${sourcetvport}" fi echo "OUTBOUND Client port ${clientport}"