diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -24,10 +24,9 @@ upload: echo "Rsync completed." interlace_images: @dir_path="./public"; \ - for file in $$(find "$$dir_path" -type f -name "*.jpg"); do \ + for file in $$(find "$$dir_path" -type f -name "*.jpg" -mtime -1); do \ convert $$file -interlace plane $$file; \ done; \ - clean: rm -r public deploy: build interlace_images compress upload |