6 lines
193 B
Makefile
6 lines
193 B
Makefile
# requires: source .env
|
|
build:
|
|
@ hugo
|
|
|
|
deploy: build
|
|
@ rsync -axv --delete --ignore-errors --exclude .DS_Store --exclude .git public/ $(DEPLOY_SSH_USER)@$(DEPLOY_SSH_HOST):$(DEPLOY_SSH_PATH)
|