diff options
author | EuAndreh <eu@euandre.org> | 2021-03-03 00:38:59 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-03 00:38:59 -0300 |
commit | 927f96922bc8ffc28e373862e055f25d4ac56b6d (patch) | |
tree | 6e47d665ee8e2bb7e1ba9dc38b1e6fc3b1ece4de | |
parent | Makefile: use mv over rsync (diff) | |
download | euandre.org-927f96922bc8ffc28e373862e055f25d4ac56b6d.tar.gz euandre.org-927f96922bc8ffc28e373862e055f25d4ac56b6d.tar.xz |
Revert "Makefile: use mv over rsync"
This reverts commit d8245f71dba84d4da86ef64563f337e864858762.
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -10,13 +10,13 @@ dev-check: check clean: rm -rf public/ _site/ -public: clean - sh aux/workflow/public.sh website website public-inbox ||: +public: + sh aux/workflow/public.sh website website public-inbox mv public/index.html public/README.html JEKYLL_ENV=production jekyll build --trace - mv _site public + rsync -a _site/ public -publish: clean public +publish: public rsync -avzP public/ euandre.org:/home/user-data/www/default/ --delete serve: |