maint: make the script fail if apps returns non 0
All checks were successful
link / Link assets on Linux (push) Successful in 5m20s

This commit is contained in:
6arelyFuture 2024-04-28 09:38:40 +00:00
parent b3d27d6d55
commit f926b92012

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
if [[ -z "$OAT_VERSION" ]]; then
echo "No OAT version was specified, please set the OAT_VERSION environment variable."
exit 1