Files
galaxy/check_model.sh
T
2020-10-08 15:19:49 -04:00

13 lines
158 B
Bash
Executable File

#!/bin/sh
cd "$(dirname "$0")"
. ./scripts/common_startup_functions.sh
setup_python
python ./scripts/check_model.py "$@"
[ $? -ne 0 ] && exit 1;
exit 0;