summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormms <michal@sapka.me>2024-08-31 21:58:45 +0200
committermms <michal@sapka.me>2024-08-31 21:58:45 +0200
commit10a92aee3cc80719bec97bff76ea4e0d3c6ee3c6 (patch)
tree5214cc17c3b30c726a77d61f806ac65699ad997f /Makefile
parentf725b267a7332f2f70205fadfccf77cdc478dd91 (diff)
feat: good omens
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 124a680..445387a 100644
--- a/Makefile
+++ b/Makefile
@@ -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