diff options
author | Wolfgang Müller | 2021-11-15 12:36:10 +0100 |
---|---|---|
committer | Wolfgang Müller | 2021-11-15 12:36:10 +0100 |
commit | 4e7fd4c33e24f38c059a568fd0cb8ef83a9bd696 (patch) | |
tree | 3313f22069850e215a77dc20212fe1c7cf3968a3 | |
parent | 34a845f45d20b4a4737b5f8010a5433ed5807b57 (diff) | |
download | site-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |