chore(dev): fixed makefile
This commit is contained in:
parent
2b56f40d23
commit
5ff53d7f74
1 changed files with 8 additions and 1 deletions
9
Makefile
9
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue