# HG changeset patch # User RhodeCode Admin # Date 2024-01-29 16:29:59 # Node ID d8e9d55aff08e37e7f79c689b7ec03fc3e5505c7 # Parent bad642348d01ea369fa5cd56c55e7ee89bcdcd01 chore(dev): small adjustment to makefile diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -66,6 +66,7 @@ dev-sh: echo "source <(carapace _carapace)" > /home/rhodecode/.zsrc PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh + .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 @@ -79,7 +80,8 @@ dev-env: .PHONY: sh ## shortcut for make dev-sh dev-env sh: - (make dev-env; make dev-sh) + make dev-env + make dev-sh .PHONY: dev-srv