From 4c468291bbd8eda5d613303f9b89792df59ac508 Mon Sep 17 00:00:00 2001 From: aitbc Date: Tue, 26 May 2026 10:54:52 +0200 Subject: [PATCH] fix: use Python wrapper directly instead of python -m for CLI - Changed scripts/aitbc-cli to use python /opt/aitbc/cli/aitbc_cli.py directly - Avoids module resolution issues with python -m - Python wrapper handles correct module loading internally --- scripts/aitbc-cli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/aitbc-cli b/scripts/aitbc-cli index 665af238..5dad9730 100755 --- a/scripts/aitbc-cli +++ b/scripts/aitbc-cli @@ -1,3 +1,3 @@ #!/bin/bash source /opt/aitbc/venv/bin/activate -python -m aitbc_cli.core.main "$@" +python /opt/aitbc/cli/aitbc_cli.py "$@"