From e2e504cefffa3623184e85e37a8bf7d9c143647b Mon Sep 17 00:00:00 2001 From: enzo Date: Wed, 13 May 2026 01:06:54 +0200 Subject: [PATCH] fix(scripts): add PYTHONPATH so venv finds full_updater module --- scripts/fullupdater | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/fullupdater b/scripts/fullupdater index 8eb8655..ebee933 100644 --- a/scripts/fullupdater +++ b/scripts/fullupdater @@ -11,4 +11,5 @@ if [ ! -d "$VENV_DIR" ]; then fi source "$VENV_DIR/bin/activate" +export PYTHONPATH="/opt/full-updater:$PYTHONPATH" python3 -m full_updater "$@"