Skip to content

Commit

Permalink
PATH fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Feb 23, 2024
1 parent 0937064 commit 9d4f385
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mxmake/topics/core/mxenv.mk
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ endif

# determine the executable path
ifeq ("$(VENV_ENABLED)", "true")
export PATH?=$(shell pwd)/$(VENV_FOLDER)/bin/:$(shell pwd)/node_modules/.bin/:$(PATH)
export PATH=$(shell pwd)/$(VENV_FOLDER)/bin/:$(shell pwd)/node_modules/.bin/:$(PATH)
export VIRTUAL_ENV=$(VENV_FOLDER)
MXENV_PATH=$(VENV_FOLDER)/bin/
MXENV_PYTHON=$(MXENV_PATH)python
Expand Down
2 changes: 1 addition & 1 deletion src/mxmake/topics/qa/mypy.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $(MYPY_TARGET): $(MXENV_TARGET)
.PHONY: mypy
mypy: $(PACKAGES_TARGET) $(MYPY_TARGET)
@echo "Run mypy"
@$(MXENV_PATH)mypy $(MYPY_SRC)
@mypy $(MYPY_SRC)

.PHONY: mypy-dirty
mypy-dirty:
Expand Down

0 comments on commit 9d4f385

Please sign in to comment.