actually fixed Makefile

This commit is contained in:
2025-01-10 20:56:28 -05:00
parent 7a4c361f27
commit afa9d0ddfb

View File

@@ -1,9 +1,10 @@
SHELL := /bin/bash
build:
if [ ! -d venv ]; then \
python3 -m venv venv; \
fi \
venv/bin/pip install requirements.txt
python -m venv venv; \
fi; \
venv/bin/pip install -r requirements.txt
deploy: