From 74acf83bdd55b84820d540d26fbc228beacc7635 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Thu, 3 Oct 2024 13:25:36 +0300 Subject: [PATCH] no output for venv install --- skeleton/project_codename.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skeleton/project_codename.sh b/skeleton/project_codename.sh index 3251a27..dfa528f 100755 --- a/skeleton/project_codename.sh +++ b/skeleton/project_codename.sh @@ -4,6 +4,6 @@ if [ ! -d "$(dirname "${0}")/.venv" ]; then fi # shellcheck disable=1091 source "$(dirname "${0}")/.venv/bin/activate" -pip install -r "$(dirname "${0}")/requirements.txt" -pip install "$(dirname "${0}")/" +pip install -r "$(dirname "${0}")/requirements.txt" > /dev/null +pip install "$(dirname "${0}")/" > /dev/null __project_codename__.py "${@}"