diff options
author | EuAndreh <eu@euandre.org> | 2021-03-02 21:33:26 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-02 21:33:26 -0300 |
commit | d8245f71dba84d4da86ef64563f337e864858762 (patch) | |
tree | 3fc3ab92a5ee1e0f2ea9525e92683a3792bf948a /Makefile | |
parent | AutoQEMU screencast: Remove ./configure in favor of plain Makefile (diff) | |
download | euandre.org-d8245f71dba84d4da86ef64563f337e864858762.tar.gz euandre.org-d8245f71dba84d4da86ef64563f337e864858762.tar.xz |
Makefile: use mv over rsync
Diffstat (limited to '')
-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: - sh aux/workflow/public.sh website website public-inbox +public: clean + sh aux/workflow/public.sh website website public-inbox ||: mv public/index.html public/README.html JEKYLL_ENV=production jekyll build --trace - rsync -a _site/ public + mv _site public -publish: public +publish: clean public rsync -avzP public/ euandre.org:/home/user-data/www/default/ --delete serve: |