aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5f76883..b166700 100644
--- a/Makefile
+++ b/Makefile
@@ -10,13 +10,13 @@ dev-check: check
clean:
rm -rf public/ _site/
-public: clean
- sh aux/workflow/public.sh website website public-inbox ||:
+public:
+ sh aux/workflow/public.sh website website public-inbox
mv public/index.html public/README.html
JEKYLL_ENV=production jekyll build --trace
- mv _site public
+ rsync -a _site/ public
-publish: clean public
+publish: public
rsync -avzP public/ euandre.org:/home/user-data/www/default/ --delete
serve: