Skip to content

Commit d3eb893

Browse files
committed
fix
1 parent d300796 commit d3eb893

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
@@ -10,9 +10,9 @@ REQUIREMENTS_FILE = requirements-dev-py$(PYTHON_VERSION_NO_DOTS).txt
1010
dev-env:
1111
python$(PYTHON_VERSION) -m venv .venv$(PYTHON_VERSION_NO_DOTS)
1212
ifeq ($(OS), Windows_NT)
13-
.venv$(PYTHON_VERSION)\Scripts\activate
13+
.venv$(PYTHON_VERSION_NO_DOTS)\Scripts\activate
1414
else
15-
. .venv$(PYTHON_VERSION)/bin/activate
15+
. .venv$(PYTHON_VERSION_NO_DOTS)/bin/activate
1616
endif
1717

1818
dev: dev-env

0 commit comments

Comments
 (0)