This repository has been archived on 2021-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
blog/Makefile

13 lines
189 B
Makefile
Raw Permalink Normal View History

2021-03-25 18:42:15 -05:00
all: public
2021-03-26 19:00:26 -05:00
public:
2021-03-25 18:42:15 -05:00
hugo
clean:
rm -rf public
2021-03-26 19:00:26 -05:00
push: clean public
2021-03-25 18:42:15 -05:00
rsync -arvz -e 'ssh -p 2222' --progress --delete public/ bbaovanc.com:/var/www/bbaovanc/blog/
2021-03-26 19:00:26 -05:00
.PHONY: all clean push