From 308c9accdb1649556848d04e11eec42906b3f8e1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 3 Dec 2014 23:21:51 +0000 Subject: [PATCH] Minor code tidy --- functions/fn_csgofix | 2 +- functions/fn_details | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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}"