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

This commit is contained in:
6arelyFuture 2024-04-28 09:46:01 +00:00
parent d2534ad844
commit 2f984fdaeb

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