Something went wrong on our end
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
run_Advisory_Processor.sh 296 B
#!/bin/bash
# get path of this script (to point to files within the same git repo)
proc_path="$(dirname "$(readlink -f "$0")")"
source "${proc_path}"/run_utils.sh
setup_conda_env
python "${proc_path}"/../coordinator/ProcessorAdvisory.py "$@"
exit_code=$?
teardown_conda_env
exit $exit_code