From 28f48e7105b55afa95e0d9c6a8f501c34f53fd3c Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Tue, 29 Oct 2013 02:51:05 +0400 Subject: [PATCH] minor tweaks and fixes... Signed-off-by: Alex A. Naanou --- buildcache.py | 4 ++-- scripts/process-archive.sh | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/buildcache.py b/buildcache.py index 1cba5ee1..03c5bb14 100755 --- a/buildcache.py +++ b/buildcache.py @@ -2,7 +2,7 @@ #======================================================================= __version__ = '''0.0.01''' -__sub_version__ = '''20131023173117''' +__sub_version__ = '''20131026130132''' __copyright__ = '''(c) Alex A. Naanou 2011''' @@ -82,7 +82,7 @@ CONFIG = { '150px': 150, '350px': 350, '900px': 900, -## '1080px': 1080, + '1080px': 1080, ## '1920px': 1920, } } diff --git a/scripts/process-archive.sh b/scripts/process-archive.sh index e35aa2b2..680f7b4a 100755 --- a/scripts/process-archive.sh +++ b/scripts/process-archive.sh @@ -207,6 +207,13 @@ fi +# build cache... +if [ -z $SKIP_CACHE ] ; then + find . -type d -name 'preview (RAW)' -exec buildcache "{}" \; +fi + + + # collect previews to one location... if ! [ -z $COMMON_PREVIEWS ] ; then if ! [ -e "./$COMMON_PREVIEWS" ] ; then @@ -217,11 +224,4 @@ fi -# build cache... -if [ -z $SKIP_CACHE ] ; then - find . -type d -name 'preview (RAW)' -exec buildcache "{}" \; -fi - - - # vim:set nowrap nospell :