https://github.com/galaxyproject/galaxy
Revision 6e7160bae5b82fea171239b72b756177f725c64b authored by Marius van den Beek on 22 May 2024, 07:58:17 UTC, committed by GitHub on 22 May 2024, 07:58:17 UTC
2 parent s 33380f9 + 4cf305c
Raw File
Tip revision: 6e7160bae5b82fea171239b72b756177f725c64b authored by Marius van den Beek on 22 May 2024, 07:58:17 UTC
Merge pull request #18197 from nsoranzo/update_actions
Tip revision: 6e7160b
check_model.sh
#!/bin/sh

cd "$(dirname "$0")"

. ./scripts/common_startup_functions.sh

setup_python

python ./scripts/check_model.py "$@"

[ $? -ne 0 ] && exit 1;
exit 0;
back to top