python-schedutils/tests/scripts/run_tests.sh
2023-07-10 13:13:49 +02:00

15 lines
250 B
Bash

#!/usr/bin/bash
# make sure we have rteval installed
if rpm -q --quiet python3-schedutils; then
:
else
sudo dnf install -y python3-schedutils
if [[ $? != 0 ]]; then
echo "install of python3-schedutils failed!"
exit 1
fi
fi
exit 0