Error handling update

This commit is contained in:
kake26 2024-05-30 21:09:08 -05:00
parent 121be8565a
commit 0a4abf7527
Signed by: kake26
GPG key ID: E8AFC43591876B4D
4 changed files with 32 additions and 0 deletions

View file

@ -12,8 +12,21 @@ fi
# Check the OS, it sets a env variable as a result
source ./os_probe.bash
if [[ $? -ne 0 ]]; then
echo "Failed to source os_probe.bash"
exit 1
fi
source ./check.bash
if [[ $? -ne 0 ]]; then
echo "Failed to source check.bash"
exit 1
fi
pkgsum="pkgsum"
hashapp="sha256sum"