Revision dc9e0788084d5bb0cc51011effe52ce7d5a39a58 authored by Nicola Soranzo on 10 April 2024, 16:42:00 UTC, committed by Nicola Soranzo on 10 April 2024, 16:42:00 UTC
2 parent s 796ed40 + 659e87f
Raw File
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