Skip to content

Commit f07a439

Browse files
committedApr 6, 2023
build: can't clean a thing until it exists!?
1 parent 6297f19 commit f07a439

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
 

‎Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ clean_platform:
2020
clean: clean_platform ## Remove artifacts of test execution, installation, etc.
2121
@echo "Cleaning..."
2222
@-pip uninstall -yq coverage
23+
@mkdir -p build # so the chmod won't fail if build doesn't exist
2324
@chmod -R 777 build
2425
@rm -rf build coverage.egg-info dist htmlcov
2526
@rm -f *.bak */*.bak */*/*.bak */*/*/*.bak */*/*/*/*.bak */*/*/*/*/*.bak

‎howto.txt

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
- wait for the new tag build to finish successfully.
8484
- @ https://readthedocs.org/dashboard/coverage/advanced/
8585
- change the default version to the new version
86+
- Don't forget to merge the bump-version branch
8687
- things to automate:
8788
- url to link to latest changes in docs
8889
- next version.py line

0 commit comments

Comments
 (0)
Please sign in to comment.