Skip to content

Commit 7647895

Browse files
committed
Correct issue in Makefile
1 parent 37457ed commit 7647895

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ $(VENV_PYTHON): venv-%-python:
5656
virtualenv -p /usr/bin/python3 $(if $(filter full,$*),venv,venv-$*)
5757

5858
$(VENV_INST_UPG): venv-%:
59-
$(if $(UPGRADE),$(VIRTUAL_ENV)/install install --upgrade pip,)
59+
$(if $(UPGRADE),$(VIRTUAL_ENV)/pip install --upgrade pip,)
6060
$(foreach REQ,$(REQS), $(VIRTUAL_ENV)/pip install $(UPGRADE) -r $(REQ);)
6161
$(if $(PRE_COMMIT),$(VIRTUAL_ENV)/pre-commit install --hook-type pre-commit,)
6262

0 commit comments

Comments
 (0)