aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustineSmithies <justine@smithies.me.uk>2023-05-13 18:09:57 +0100
committerJustineSmithies <justine@smithies.me.uk>2023-05-13 18:09:57 +0100
commitc05943716c8f82d6826015900a4b2888dc4d9f51 (patch)
tree789f1777c0c9db3a044a0056d59f90e679f6ebb7
parent065e089065f70f01a6209b269391a8db0ee1e622 (diff)
make deploy - Use rsync for copying build from one repo to another
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 817ab08..2069d8f 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,8 @@ watch:
ls -d .git/* * posts/* pages/* header.html | entr -cd make ;\
done
-deploy: build
+deploy:
+ rsync -rv --exclude '*.tsv' ~/Git/blarg/build/ ~/Git/pages/
.PHONY: build clean watch deploy