Files
bbaovanc.com/Makefile
2021-03-26 19:00:26 -05:00

13 lines
189 B
Makefile

all: public
public:
hugo
clean:
rm -rf public
push: clean public
rsync -arvz -e 'ssh -p 2222' --progress --delete public/ bbaovanc.com:/var/www/bbaovanc/blog/
.PHONY: all clean push