Chandler Swift
c1d0048639
I wasn't able to figure out how to get an include-list working, so for now we're using an exclude-list for rsync-able files
8 lines
215 B
Makefile
8 lines
215 B
Makefile
.PHONY: deploy
|
|
deploy:
|
|
rsync --archive --verbose --delete --no-i-r --info=progress2 \
|
|
--exclude=unused-pictures/ \
|
|
--exclude=.git/ \
|
|
--exclude=Makefile \
|
|
./ bert:/srv/www/katherineandchandler.com/2024/ireland/
|