From af09ffd2b6042ed2be07e2195885d77d8782d09d Mon Sep 17 00:00:00 2001
From: Tor-Einar Skog <tor-einar.skog@nibio.no>
Date: Wed, 20 Mar 2024 10:27:43 +0100
Subject: [PATCH] Silence venv creation

---
 run_PSILARTEMP.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/run_PSILARTEMP.sh b/run_PSILARTEMP.sh
index b1e17f2..9b2c456 100755
--- a/run_PSILARTEMP.sh
+++ b/run_PSILARTEMP.sh
@@ -53,8 +53,8 @@ cd $APP_PATH
 # Create and activate the virtual environment
 python3 -m venv .venv
 . .venv/bin/activate
-python3 -m pip install --upgrade pip
-pip install -r $REQUIREMENTS
+python3 -m pip install -q --upgrade pip
+pip install -q -r $REQUIREMENTS
 
 # Run the model
 echo "==== `date`: Running model" &>> "$LOG_FILE"
-- 
GitLab