8 lines
160 B
Bash
Executable File
8 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# cd to the directory of the script
|
|
cd "$(dirname "$0")"
|
|
poetry install --no-interaction --quiet
|
|
poetry run python op-conductor-ops.py "${@}"
|