Fix $(PATH) var in Makefile. Thanks @rjwalls!
@ -20,6 +20,6 @@ clean:
$(RM) -r _site _includes/pubs.html
HOST := yourwebpage.com
PATH := www/
PATHSVR := www/
deploy: clean all
rsync --compress --recursive --checksum --itemize-changes --delete -e ssh _site/ $(HOST):$(PATH)
rsync --compress --recursive --checksum --itemize-changes --delete -e ssh _site/ $(HOST):$(PATHSVR)