mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-28 18:08:19 +08:00
13 lines
158 B
Bash
Executable File
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;
|