From 45e10422c8e6e48ac9adf09ef72ac979d7bbdaa3 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 30 May 2026 11:47:23 +0000 Subject: [PATCH] run.sh: remove --quiet from pip so install errors are visible https://claude.ai/code/session_01JuRTR5Xjx8emQsyerBgGU7 --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index d61fb8b..e8213af 100644 --- a/run.sh +++ b/run.sh @@ -9,6 +9,6 @@ if [ ! -d "$VENV" ]; then python3 -m venv "$VENV" fi -"$VENV/bin/pip" install --quiet -r requirements.txt +"$VENV/bin/pip" install -r requirements.txt exec "$VENV/bin/python" main.py "$@"