several more fixes to the process-archive.sh script...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-09-08 04:00:23 +04:00
parent 69b03a7d67
commit 398bc19df9

View File

@ -212,14 +212,14 @@ if ! [ -z $COMMON_PREVIEWS ] ; then
if ! [ -e "./$COMMON_PREVIEWS" ] ; then if ! [ -e "./$COMMON_PREVIEWS" ] ; then
mkdir -p "./$COMMON_PREVIEWS" mkdir -p "./$COMMON_PREVIEWS"
fi fi
find . -type d -name 'preview (RAW)' -exec mv "./\{}" "./$COMMON_PREVIEWS" \; find . -type d -name 'preview (RAW)' -exec mv "{}" "./$COMMON_PREVIEWS" \;
fi fi
# build cache... # build cache...
if [ -z $SKIP_CACHE ] ; then if [ -z $SKIP_CACHE ] ; then
find . -type d -name 'preview (RAW)' -exec buildcache "./\{}" \; find . -type d -name 'preview (RAW)' -exec buildcache "{}" \;
fi fi