diff options
author | EuAndreh <eu@euandre.org> | 2021-10-12 11:27:53 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-10-12 11:28:33 -0300 |
commit | af659ec6dfad2c7622b8a3ef72436ceeabf50df3 (patch) | |
tree | e4e01c24c280e21b65ade43726db8766d606304e /Makefile | |
parent | Deinit Git Annex (diff) | |
download | euandre.org-af659ec6dfad2c7622b8a3ef72436ceeabf50df3.tar.gz euandre.org-af659ec6dfad2c7622b8a3ef72436ceeabf50df3.tar.xz |
Build Jekyll output directly to public/
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -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 |