summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2021-11-15 12:36:10 +0100
committerWolfgang Müller2021-11-15 12:36:10 +0100
commit4e7fd4c33e24f38c059a568fd0cb8ef83a9bd696 (patch)
tree3313f22069850e215a77dc20212fe1c7cf3968a3
parent34a845f45d20b4a4737b5f8010a5433ed5807b57 (diff)
downloadsite-4e7fd4c33e24f38c059a568fd0cb8ef83a9bd696.tar.gz
Makefile: Set correct permissions explicitly
Make sure that the web server on the remote side can read all files regardless of the permission bits on the local development side (which may accidentally be left as 700 or 600).
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ca04d36..4d2a5a5 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,6 @@ clean:
rm -f posts/*.html index.html atom.xml style.css
deploy: site
- @rsync -avhR $(POSTS_HTML) posts/img fonts index.html style.css logo.{svg,webp} atom.xml coleridge:www/oriole.systems/
+ @rsync -avhR --chmod=D755,F644 $(POSTS_HTML) posts/img fonts index.html style.css logo.{svg,webp} atom.xml coleridge:www/oriole.systems/
.PHONY: clean deploy site