Added remove & add commands
All checks were successful
Test before pr merge / test-lint (pull_request) Successful in 7s

This commit is contained in:
2025-10-11 11:05:04 +02:00
parent 104b736778
commit 45dcb400da
12 changed files with 164 additions and 15 deletions

12
src/cli/run Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
cd ../
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
export PYTHONPATH="$ROOT_DIR/core:$ROOT_DIR/cli:$PYTHONPATH"
old_dir="$(pwd)"
cd ../
python -m cpl.cli.main "$@"
cd "$old_dir"