diff --git a/Makefile b/Makefile index f65a034..030aa4c 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,10 @@ DEPLOY_LOCATION=eryn@nutmeg.erynwells.me:/srv/www/erynwells.me/html -.PHONY: deploy -deploy: +.PHONY: site +site: hugo - rsync -avz --no-times --no-perms --delete public/ $(DEPLOY_LOCATION) +.PHONY: deploy +deploy: site + rsync -avz --no-times --no-perms --delete public/ $(DEPLOY_LOCATION)