1
0
Fork 0
blog.kempkens.io/Makefile

12 lines
297 B
Makefile
Raw Normal View History

2014-08-13 19:14:35 +00:00
all: compile upload
compile:
@echo "=== Generating static files"
@jekyll build
upload:
@echo "=== Syncing files"
@rsync -avz --no-o --no-g -e ssh --chmod=og=r -p --delete _site/ kempkens:/var/www/blog
@echo "=== Changing permissions"
@ssh kempkens chown -R www-data:www-data /var/www/blog