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