Commit 21382422 authored by Ruben ten Hove's avatar Ruben ten Hove
Browse files

fix var names

parent 29961f88
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ variables:
  images:
    - |
      if command -v mogrify >/dev/null; then
        find . -type f -regex ${WEB_OPTIMIZE_FIND_REGEX} -exec mogrify -verbose ${WEB_OPTIMIZE_IMAGE_DEFAULT_ARGS} -quality ${WEB_OPTIMIZE_IMAGE_QUALITY} -resize ${WEB_OPTIMIZE_MAX_WIDTH}x\> {} \;
        find . -type f -regex ${WEB_OPTIMIZE_IMAGE_FIND_REGEX} -exec mogrify -verbose ${WEB_OPTIMIZE_IMAGE_DEFAULT_ARGS} -quality ${WEB_OPTIMIZE_IMAGE_QUALITY} -resize ${WEB_OPTIMIZE_IMAGE_MAX_WIDTH}x\> {} \;
      else
        echo "[!] Imagemagick not available. Not optimizing images."
      fi