fix: use Python wrapper directly instead of python -m for CLI
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled

- 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
This commit is contained in:
aitbc
2026-05-26 10:54:52 +02:00
parent 876f7f37fc
commit 4c468291bb

View File

@@ -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 "$@"