From 231036b6fce9717846b1da063894374a993b642c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 23 Apr 2015 09:44:04 +0100 Subject: [PATCH] Added quotes around dirs --- functions/fn_update_dl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/fn_update_dl b/functions/fn_update_dl index fa576992f..6a0165b67 100644 --- a/functions/fn_update_dl +++ b/functions/fn_update_dl @@ -32,7 +32,7 @@ sleep 1 fn_printoknl "Updating ${servername}" fn_scriptlog "Updating ${servername}" sleep 1 -cd ${rootdir} +cd "${rootdir}" echo -e "downloading teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz...\c" fn_scriptlog "Downloading teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz" wget -N --no-check-certificate /dev/null http://dl.4players.de/ts/releases/${ts3_version_number}/teamspeak3-server_linux-${ts3arch}-${ts3_version_number}.tar.gz 2>&1 | grep -F HTTP | cut -c45-| uniq @@ -55,7 +55,7 @@ else fi echo -e "copying to ${filesdir}...\c" fn_scriptlog "Copying to ${filesdir}" -cp -R ${rootdir}/teamspeak3-server_linux-${ts3arch}/* "${filesdir}" 2> "${scriptlogdir}/.${servicename}-cp-error.tmp" +cp -R "${rootdir}/teamspeak3-server_linux-${ts3arch}/*" "${filesdir}" 2> "${scriptlogdir}/.${servicename}-cp-error.tmp" local status=$? if [ ${status} -eq 0 ]; then echo "OK" @@ -70,7 +70,7 @@ else exit fi rm -f teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz -rm -rf ${rootdir}/teamspeak3-server_linux-${ts3arch} +rm -rf "${rootdir}/teamspeak3-server_linux-${ts3arch}" } if [ "${gamename}" == "Teamspeak 3" ]; then