aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2024-01-01 13:56:09 +0000
committerJustine Smithies <justine@smithies.me.uk>2024-01-01 13:56:09 +0000
commit89a0d71688c0abfbae4f3785d954a40a9ac5166c (patch)
tree826aa2e1e3005a34ae3fd30e632f748c654dd9af
parent1b518bdf1af2b203485744374ba6c15692958d2d (diff)
Added missing -f to rm under clean to stop it quiting on missing site.tar.gz
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6315bd4..aafaf62 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ build:
./blarg
clean:
rm -rf build/*
- rm site.tar.gz
+ rm -f site.tar.gz
deploy:
tar -C build -cvz . > site.tar.gz
hut pages publish -d justine.smithies.me.uk site.tar.gz