# HG changeset patch # User RhodeCode Admin # Date 2023-12-05 09:00:13 # Node ID 04e828571e4a83b0f055d3cf542ebd0f67c3c049 # Parent 13e09fb106ea1d79031967d6426e2e91ca51604c chore(dev): fixed makefile diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -126,9 +126,16 @@ dev-sh: echo "source <(carapace _carapace)" > /home/rhodecode/.zsrc 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 dev-env: pip install build virtualenv pushd ../rhodecode-vcsserver/ && make dev-env && popd