From ab5c6cf3fbbf0184dc4e050142f4203d7ebc2246 Mon Sep 17 00:00:00 2001 From: mco-system Date: Thu, 6 Apr 2023 22:41:56 +1100 Subject: [PATCH] wip beta --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 804ac2e..287ff3f 100644 --- a/Makefile +++ b/Makefile @@ -6,9 +6,9 @@ install: echo [+] Déploiement dans $$THSF_DIR; \ python3 -m venv thsf_venv; \ . thsf_venv/bin/activate; \ - pip install -r requirements.txt ;\ - pip install . ;\ - pip install gunicorn; \ + pip3 install -r requirements.txt ;\ + pip3 install . ;\ + pip3 install gunicorn; \ run: set -e ;\ @@ -31,6 +31,6 @@ clean: rm -Rf ./build ;\ rm -Rf ./src/thsf.egg-info; \ . thsf_venv/bin/activate; \ - pip uninstall thsf -y + pip3 uninstall thsf -y all: stop clean install run