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