From 7675edb5de34f464f7824c895ca3575b4cf728a1 Mon Sep 17 00:00:00 2001 From: Knah Tsaeb Date: Tue, 2 Apr 2013 11:43:07 +0200 Subject: [PATCH] [fix] bad file path --- bin/thumb_server.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/thumb_server.sh b/bin/thumb_server.sh index 53a1820..7d5ffe4 100755 --- a/bin/thumb_server.sh +++ b/bin/thumb_server.sh @@ -16,9 +16,9 @@ optimizeTool='' # external tool form optimize png maxQueue=50 # max process in queue currentProcess=$(ps -e | grep -v grep | grep thumb_ | wc -l) -if [ ! -f "cache/tmp/$md5Site.png" ] +if [ ! -f "cache/config/serverOptions.php" ] then - source "../cache/config/serverOptions.php" + source "cache/config/serverOptions.php" fi if [ $currentProcess -gt $maxQueue ]