Skip to content

Commit

Permalink
Improve cleaning of caches
Browse files Browse the repository at this point in the history
Ref. None
  • Loading branch information
treiher committed Jul 19, 2024
1 parent 3f2946f commit 18dff5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
*.egg-info
*.o
*.pyc
.*_cache
.bin
.cargo-home
.coverage
.coverage.*
.env
.hypothesis
.mypy_cache
.venv*
.vscode/configurationCache.log
/contrib
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,8 @@ audit: $(RFLX) rapidflux_devel
.PHONY: clean clean_build clean_all

clean:
rm -rf $(BUILD_DIR) .coverage .coverage.* .hypothesis .mypy_cache .pytest_cache .ruff_cache doc/language_reference/build doc/user_guide/build
rm -rf $(BUILD_DIR) .coverage .coverage.* .hypothesis doc/language_reference/build doc/user_guide/build
find -name ".*_cache" -exec rm -vrf {} \;
$(MAKE) -C examples/apps/wireguard clean
$(MAKE) -C examples/apps/ping clean
$(MAKE) -C examples/apps/dhcp_client clean
Expand Down

0 comments on commit 18dff5e

Please sign in to comment.