From a8083444ef7b90f65e7f1a5d8f1b5c81e0dc2028 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Tue, 16 Apr 2024 00:47:05 +0200 Subject: compress hidden files (e.g. .well-known/) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit 1.4.1