Skip to content

Commit

Permalink
what is in bin?
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Mar 4, 2024
1 parent 14b283c commit 654ec4d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,13 @@ endif

# Determine the executable path
ifeq ("$(VENV_ENABLED)", "true")
export PATH:=$(abspath $(VENV_FOLDER))/bin:$(PATH)
export VIRTUAL_ENV=$(abspath $(VENV_FOLDER))
ifeq ("$(OS_TYPE)", "msys")
VENV_EXECUTABLE_FOLDER=$(VIRTUAL_ENV)/Scripts
else
VENV_EXECUTABLE_FOLDER=$(VIRTUAL_ENV)/bin
endif
export PATH:=$(VENV_EXECUTABLE_FOLDER):$(PATH)
MXENV_PYTHON=python
else
MXENV_PYTHON=$(PRIMARY_PYTHON)
Expand Down Expand Up @@ -282,6 +287,8 @@ endif
@$(PYTHON_PACKAGE_COMMAND) install -U pip setuptools wheel
@echo "Install/Update MXStack Python packages"
@$(PYTHON_PACKAGE_COMMAND) install -U $(MXDEV) $(MXMAKE)
@echo $(VENV_EXECUTABLE_FOLDER)
@ls -la $(VENV_EXECUTABLE_FOLDER)
@touch $(MXENV_TARGET)

.PHONY: mxenv
Expand Down

0 comments on commit 654ec4d

Please sign in to comment.