Add a Makefile target for cleaning up the offline docs

Sometimes I want to be able to test from a fresh start, so this will be helpful.
This commit is contained in:
Dave Pearson
2023-02-08 08:24:50 +00:00
parent e9fab41377
commit 4055373725

View File

@@ -38,6 +38,10 @@ docs-build:
docs-build-offline:
mkdocs build --config-file mkdocs-offline.yml
.PHONY: clean-offline-docs
clean-offline-docs:
rm -rf docs-offline
.PHONY: docs-deploy
docs-deploy: clean-screenshot-cache
mkdocs gh-deploy