diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f65a034 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +# Eryn Wells + +DEPLOY_LOCATION=eryn@nutmeg.erynwells.me:/srv/www/erynwells.me/html + +.PHONY: deploy +deploy: + hugo + rsync -avz --no-times --no-perms --delete public/ $(DEPLOY_LOCATION) +