From 398bc19df91807969edfe6bd808ece1291d31f85 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sun, 8 Sep 2013 04:00:23 +0400 Subject: [PATCH] several more fixes to the process-archive.sh script... Signed-off-by: Alex A. Naanou --- scripts/process-archive.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/process-archive.sh b/scripts/process-archive.sh index 65f9eba1..e35aa2b2 100755 --- a/scripts/process-archive.sh +++ b/scripts/process-archive.sh @@ -212,14 +212,14 @@ if ! [ -z $COMMON_PREVIEWS ] ; then if ! [ -e "./$COMMON_PREVIEWS" ] ; then mkdir -p "./$COMMON_PREVIEWS" fi - find . -type d -name 'preview (RAW)' -exec mv "./\{}" "./$COMMON_PREVIEWS" \; + find . -type d -name 'preview (RAW)' -exec mv "{}" "./$COMMON_PREVIEWS" \; fi # build cache... if [ -z $SKIP_CACHE ] ; then - find . -type d -name 'preview (RAW)' -exec buildcache "./\{}" \; + find . -type d -name 'preview (RAW)' -exec buildcache "{}" \; fi