Skip to content

Instantly share code, notes, and snippets.

@dfritschy
Created June 18, 2015 13:21
Show Gist options
  • Save dfritschy/40c5296c16d349456f51 to your computer and use it in GitHub Desktop.
Save dfritschy/40c5296c16d349456f51 to your computer and use it in GitHub Desktop.
Run this script when parameters in image.yml are changed as eZ 2014.11 does not purge invalid variations automatically
#!/bin/sh
# purge image variations
#
# run this script when parameters in image.yml are changed as eZ 2014.11 does not purge invalid
# variations automatically
readonly variations="reference
article_full
article_line
tile_square
tile_rect
tile_square_1x
tile_rect_1x"
for variation in ${variations}; do
echo "Purging '${variation}' variation files..."
find ezpublish_legacy/var/ezdemo_site/storage/images -name *_${variation}.jpg -print -delete
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment