Files
galaxy/check_model.sh
Sergey Golitsynskiy 2dbfdce295 Add script + wrapper
2020-10-03 02:26:40 -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;