# HG changeset patch # User RhodeCode Admin # Date 2024-06-04 15:19:39 # Node ID b25ab556e7cddfd5f44aab6c8a3776fcff404c6d # Parent 78740d042f6058916c015e12c6b2bf85b89a5098 makefile: synced makefiles diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -67,6 +67,13 @@ dev-sh: @PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh +.PHONY: dev-cleanup +## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y +dev-cleanup: + pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y + rm -rf /tmp/* + + .PHONY: dev-env ## make dev-env based on the requirements files and install develop of packages ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y