Added remove & add commands
All checks were successful
Test before pr merge / test-lint (pull_request) Successful in 7s
All checks were successful
Test before pr merge / test-lint (pull_request) Successful in 7s
This commit is contained in:
12
src/cli/run
Executable file
12
src/cli/run
Executable 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"
|
||||
Reference in New Issue
Block a user