fix: correct CLI module path from cli.core.main to aitbc_cli.core.main
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

- Fixed scripts/aitbc-cli to use correct module name aitbc_cli.core.main
- Prevents module resolution to hermes-agent or other cli packages
- Ensures AITBC CLI loads from correct aitbc_cli package
This commit is contained in:
aitbc
2026-05-26 10:54:07 +02:00
parent db19c80026
commit 876f7f37fc

View File

@@ -1,3 +1,3 @@
#!/bin/bash
source /opt/aitbc/venv/bin/activate
python -m cli.core.main "$@"
python -m aitbc_cli.core.main "$@"