aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 2 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index cbcadf9..86c36ba 100644
--- a/Makefile
+++ b/Makefile
@@ -8,17 +8,10 @@ check:
dev-check: check
clean:
- rm -rf public/ _site/
+ rm -rf public/
public:
- # sh aux/workflow/public.sh website website public-inbox
- JEKYLL_ENV=production jekyll build --trace
- rsync -a _site/ public
+ jekyll build
publish: public
rsync -avzP public/ euandre.org:/home/user-data/www/default/ --delete
-
-serve:
- JEKYLL_ENV=production jekyll serve --future --livereload --trace
-
-.PHONY: clean check dev-check publish serve