Skip to content

Commit

Permalink
Ignore errors during make zap
Browse files Browse the repository at this point in the history
  • Loading branch information
otherjoel committed Nov 21, 2019
1 parent c707879 commit 3d7b453
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,14 @@ publish: ## Rsync the website to the public web server (does not rebuild site fi
# ‘make spritz’ just cleans up temporary LaTeX files and clears the Pollen cache;
# ‘make zap’ deletes all output files as well.
spritz: ## Just cleans up LaTeX working folders and Pollen cache
rm -rf latex-tmp
-rm -rf latex-tmp
raco pollen reset

zap: spritz ## Does a spritz and also deletes all HTML and PDF output
rm posts/*.html posts/*.pdf
rm feed.xml
rm *.html *.pdf
rm -f notepad.sqlite
-rm posts/*.html posts/*.pdf
-rm feed.xml
-rm *.html *.pdf
-rm -f notepad.sqlite
raco pollen reset

post: ## Quickly start a new post from template
Expand Down

0 comments on commit 3d7b453

Please sign in to comment.