chore(dev): fixed makefile

This commit is contained in:
RhodeCode Admin 2023-12-05 10:00:13 +01:00
parent 2b56f40d23
commit 5ff53d7f74

View file

@ -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