##// END OF EJS Templates
chore(dev): fixed makefile
super-admin -
r5222:04e82857 default
parent child Browse files
Show More
@@ -126,9 +126,16 b' dev-sh:'
126 echo "source <(carapace _carapace)" > /home/rhodecode/.zsrc
126 echo "source <(carapace _carapace)" > /home/rhodecode/.zsrc
127 PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh
127 PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh
128
128
129
130 .PHONY: dev-cleanup
131 ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
132 dev-cleanup:
133 pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
134 rm -rf /tmp/*
135
136
129 .PHONY: dev-env
137 .PHONY: dev-env
130 ## make dev-env based on the requirements files and install develop of packages
138 ## make dev-env based on the requirements files and install develop of packages
131 ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
132 dev-env:
139 dev-env:
133 pip install build virtualenv
140 pip install build virtualenv
134 pushd ../rhodecode-vcsserver/ && make dev-env && popd
141 pushd ../rhodecode-vcsserver/ && make dev-env && popd
General Comments 0
You need to be logged in to leave comments. Login now