diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -93,12 +93,13 @@ clean: $(derived-assets) \ torrent-files.txt files.mk deps.mk +JEKYLL = JEKYLL_ENV=production jekyll public: $(derived-assets) - jekyll build - -deploy: all - rsync -avzP public/ euandre.org:/home/user-data/www/default/ --delete + $(JEKYLL) build run: all open 'http://localhost:4000' - jekyll serve + $(JEKYLL) serve + +deploy: all + rsync -avzP public/ euandre.org:/home/user-data/www/default/ --delete |