10 lines
279 B
Makefile
10 lines
279 B
Makefile
.PHONY: deploy
|
|
deploy:
|
|
rsync --archive --verbose --delete --delete-excluded --no-i-r --info=progress2 \
|
|
--exclude-from=.gitignore \
|
|
--exclude=.git/ \
|
|
--exclude=.gitignore \
|
|
--exclude=Makefile \
|
|
--exclude=README.md \
|
|
./ bert:/srv/www/katherineandchandler.com/2024/ireland/
|