git » homepage.git » commit 95bd843

fix perms

author Alan Dipert
2025-10-08 05:20:13 UTC
committer Alan Dipert
2025-10-08 05:20:13 UTC
parent 8ef1cb8c592a64f5dd35175765a7bc2d84fff669

fix perms

Makefile +1 -1

diff --git a/Makefile b/Makefile
index 957f3f3..4566487 100644
--- a/Makefile
+++ b/Makefile
@@ -50,7 +50,7 @@ deploy: check-git-clean assets all
 		echo "DEPLOY_HOST is not set"; \
 		exit 1; \
 	fi
-	rsync -a $(OUT)/ $(DEPLOY_HOST)
+	rsync -a --chmod=F644,D755 $(OUT)/ $(DEPLOY_HOST)
 
 tree:
 	printf 'Markdown sources: ' && find $(SRC) -type f -name '*.md' | wc -l