diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,10 +1,13 @@ FINDARGS= \( -name "*.html" -o -name "*.xml" -o -name "*.css" -o -name "*.js" \) all: - rm -rf public/* hugo for f in `find public/ -type f $(FINDARGS)`; do \ echo "Compressing $$f..." ; \ gzip --keep --force -9 $$f ; \ brotli --keep --force -Z $$f ; \ done + @echo "###########################################" + @echo "### If you (re)moved files, remember to ###" + @echo "#### delete them manually from public/ ####" + @echo "###########################################" |