From 6615c8b19d05a53d55a3d05db7b358975ebe57f5 Mon Sep 17 00:00:00 2001 From: Jordan Cook Date: Tue, 11 Jul 2023 15:31:30 -0500 Subject: [PATCH] Continue 'make all' target if lint step fails --- Makefile | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 05d3f09..2732b89 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ docs: sphinx-build $(SOURCE_DIR) $(BUILD_DIR) lint: - pre-commit run --all + -pre-commit run --all linkcheck: sphinx-build -b linkcheck $(SOURCE_DIR) $(BUILD_DIR) diff --git a/README.md b/README.md index 5e0a579..e6febfb 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,12 @@ Build: make docs ``` -Build with live reload: +Build with live browser reload: ```bash make livedocs ``` -Publish to tilde.team: +Build and publish to tilde.team: ```bash -make publish +make all ```