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 :