Skip to content

Commit 62ccea5

Browse files
committed
Fix Windows CI
Previous version of install-setuptools makefile target was causing the following error in CI: ERROR: To modify pip, please run the following command: python.exe -m pip install --upgrade pip setuptools wheel make: *** [Makefile:15: install-setuptools] Error 1
1 parent 8f68c9a commit 62ccea5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install-tox:
1212

1313
.PHONY: install-setuptools
1414
install-setuptools:
15-
pip install --upgrade pip setuptools wheel
15+
python -m pip install --upgrade pip setuptools wheel
1616

1717
.PHONY: install-tools
1818
install-tools: install-setuptools install-poetry install-tox
@@ -56,7 +56,7 @@ black-check:
5656
pylint:
5757
poetry run pylint ./splunk_otel ./tests/ ./scripts/
5858

59-
.PHONY: flake8
59+
.PHONY: flake8
6060
flake8:
6161
poetry run flake8 ./splunk_otel ./tests/ ./scripts/
6262

0 commit comments

Comments
 (0)