diff options
author | Alan Pearce | 2024-04-16 00:47:05 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-16 00:47:05 +0200 |
commit | a8083444ef7b90f65e7f1a5d8f1b5c81e0dc2028 (patch) | |
tree | 7b13ec6f668e524701d56a24ac84b919768694d5 /Makefile | |
parent | 2038e626ef78f466d1d138cc3b48b6e522f4b0ed (diff) | |
download | website-a8083444ef7b90f65e7f1a5d8f1b5c81e0dc2028.tar.lz website-a8083444ef7b90f65e7f1a5d8f1b5c81e0dc2028.tar.zst website-a8083444ef7b90f65e7f1a5d8f1b5c81e0dc2028.zip |
compress hidden files (e.g. .well-known/)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 41b4666..526c21d 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ clean: rm -rf ./public rm -rf ./.*stamp -to_compress := $(shell fd . public --type=file -e html -e xml -e xsl -e txt -e asc) +to_compress := $(shell fd --hidden . public --type=file -e html -e xml -e xsl -e txt -e asc) brotli_files := $(patsubst %, %.br, $(to_compress)) gzip_files := $(patsubst %, %.gz, $(to_compress)) zstd_files := $(patsubst %, %.zst, $(to_compress)) |