compress hidden files (e.g. .well-known/)
Alan Pearce alan@alanpearce.eu
Tue, 16 Apr 2024 00:47:05 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M Makefile → 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))