Continue 'make all' target if lint step fails

This commit is contained in:
Jordan Cook 2023-07-11 15:31:30 -05:00
parent 58ea59d67f
commit 6615c8b19d
2 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ docs:
sphinx-build $(SOURCE_DIR) $(BUILD_DIR) sphinx-build $(SOURCE_DIR) $(BUILD_DIR)
lint: lint:
pre-commit run --all -pre-commit run --all
linkcheck: linkcheck:
sphinx-build -b linkcheck $(SOURCE_DIR) $(BUILD_DIR) sphinx-build -b linkcheck $(SOURCE_DIR) $(BUILD_DIR)

View File

@ -17,12 +17,12 @@ Build:
make docs make docs
``` ```
Build with live reload: Build with live browser reload:
```bash ```bash
make livedocs make livedocs
``` ```
Publish to tilde.team: Build and publish to tilde.team:
```bash ```bash
make publish make all
``` ```