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