summaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorWolfgang Müller2019-07-22 16:28:11 +0200
committerWolfgang Müller2019-07-22 16:28:11 +0200
commita7147c4d94f03447a0475d54a8bdf8e634df9f67 (patch)
tree70472394578e6b8561e563808fe4d91062ef5a7d /Makefile
parentc1a9223366c9f9c220ffb31c68e0546e19c966ca (diff)
downloadsite-a7147c4d94f03447a0475d54a8bdf8e634df9f67.tar.gz
Makefile: Make rsync less verbose
The -P switch really only is useful for bigger files, of which there are none here.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a85d62a..9a6af6c 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,6 @@ clean:
rm -f posts/*.html index.html atom.xml style.css man.css
deploy:
- rsync -avhRP $(POSTS_HTML) posts/img fonts index.html style.css man.css logo.svg atom.xml coleridge:www/oriole.systems/
+ rsync -avhR $(POSTS_HTML) posts/img fonts index.html style.css man.css logo.svg atom.xml coleridge:www/oriole.systems/
.PHONY: clean deploy site