aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-03-02 21:33:26 -0300
committerEuAndreh <eu@euandre.org>2021-03-02 21:33:26 -0300
commitd8245f71dba84d4da86ef64563f337e864858762 (patch)
tree3fc3ab92a5ee1e0f2ea9525e92683a3792bf948a
parentAutoQEMU screencast: Remove ./configure in favor of plain Makefile (diff)
downloadeuandre.org-d8245f71dba84d4da86ef64563f337e864858762.tar.gz
euandre.org-d8245f71dba84d4da86ef64563f337e864858762.tar.xz
Makefile: use mv over rsync
Diffstat (limited to '')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b166700..5f76883 100644
--- a/Makefile
+++ b/Makefile
@@ -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: