From a43db693e013f7a260580410e7d904afe7765e27 Mon Sep 17 00:00:00 2001 From: Alex Malinovich Date: Tue, 29 Nov 2016 20:40:35 -0800 Subject: [PATCH] Final quoting fixes --- extras/installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/installer.sh b/extras/installer.sh index c8c19c1..e620100 100755 --- a/extras/installer.sh +++ b/extras/installer.sh @@ -260,9 +260,9 @@ configure_cron() { echo echo -n "Installing daily cron job... " if [ $EUID -ne 0 ]; then - sudo ln -sf ${FULL_PATH}/extras/cronwrapper "$CRONWRAPPER" + sudo ln -sf "${FULL_PATH}/extras/cronwrapper" "$CRONWRAPPER" else - ln -sf ${FULL_PATH}/extras/cronwrapper "$CRONWRAPPER" + ln -sf "${FULL_PATH}/extras/cronwrapper" "$CRONWRAPPER" fi echo "done" elif [ -f "$CRONWRAPPER" -o -f "$CONFIGCRON" ]; then