mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-05 12:41:49 +02:00
Fix Python lookup in the Makefile
This commit is contained in:
parent
f919660932
commit
4f7587f6e2
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,6 +1,6 @@
|
|||
VIRTUALENV = virtualenv --python=python3
|
||||
SPHINX_BUILDDIR = docs/_build
|
||||
VENV := $(shell echo $${VIRTUAL_ENV-.venv})
|
||||
VENV := $(shell realpath $${VIRTUAL_ENV-.venv})
|
||||
PYTHON = $(VENV)/bin/python3
|
||||
DEV_STAMP = $(VENV)/.dev_env_installed.stamp
|
||||
DOC_STAMP = $(VENV)/.doc_env_installed.stamp
|
||||
|
@ -24,7 +24,7 @@ $(DEV_STAMP): $(PYTHON) dev-requirements.txt
|
|||
touch $(DEV_STAMP)
|
||||
|
||||
serve: $(INSTALL_STAMP)
|
||||
cd budget; ../$(PYTHON) run.py
|
||||
cd budget; $(PYTHON) run.py
|
||||
|
||||
test: $(DEV_STAMP)
|
||||
$(VENV)/bin/tox
|
||||
|
|
Loading…
Reference in a new issue