diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-01-01 13:56:09 +0000 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-01-01 13:56:09 +0000 |
commit | 89a0d71688c0abfbae4f3785d954a40a9ac5166c (patch) | |
tree | 826aa2e1e3005a34ae3fd30e632f748c654dd9af /Makefile | |
parent | 1b518bdf1af2b203485744374ba6c15692958d2d (diff) |
Added missing -f to rm under clean to stop it quiting on missing site.tar.gz
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |