diff options
author | JustineSmithies <justine@smithies.me.uk> | 2023-05-13 18:09:57 +0100 |
---|---|---|
committer | JustineSmithies <justine@smithies.me.uk> | 2023-05-13 18:09:57 +0100 |
commit | c05943716c8f82d6826015900a4b2888dc4d9f51 (patch) | |
tree | 789f1777c0c9db3a044a0056d59f90e679f6ebb7 | |
parent | 065e089065f70f01a6209b269391a8db0ee1e622 (diff) |
make deploy - Use rsync for copying build from one repo to another
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |