We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37457ed commit 7647895Copy full SHA for 7647895
Makefile
@@ -56,7 +56,7 @@ $(VENV_PYTHON): venv-%-python:
56
virtualenv -p /usr/bin/python3 $(if $(filter full,$*),venv,venv-$*)
57
58
$(VENV_INST_UPG): venv-%:
59
- $(if $(UPGRADE),$(VIRTUAL_ENV)/install install --upgrade pip,)
+ $(if $(UPGRADE),$(VIRTUAL_ENV)/pip install --upgrade pip,)
60
$(foreach REQ,$(REQS), $(VIRTUAL_ENV)/pip install $(UPGRADE) -r $(REQ);)
61
$(if $(PRE_COMMIT),$(VIRTUAL_ENV)/pre-commit install --hook-type pre-commit,)
62
0 commit comments