From 15cb816008f785004f7fa5ef6cce39ffa13ffd60 Mon Sep 17 00:00:00 2001 From: Alex Malinovich Date: Thu, 17 Nov 2016 20:07:20 -0800 Subject: [PATCH] Fix cronwrapper failing if CONF is specified --- extras/cronwrapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/cronwrapper b/extras/cronwrapper index 6315de2..f27f142 100755 --- a/extras/cronwrapper +++ b/extras/cronwrapper @@ -39,7 +39,7 @@ if [ ! -z "$CONF" ]; then echo "ERROR: Cannot find config file (tried ${CONF})" >&2 exit 255 fi - CONF="--config \"${CONF}\"" + CONF="--config=${CONF}" fi LOGFILE=$(mktemp /tmp/plexupdate.cron.XXXX)