force ret_val

This commit is contained in:
Louis Abel 2023-09-03 16:41:50 -07:00
parent 70b64bb53f
commit 6c6e7f0a0c
Signed by: label
GPG Key ID: B37E62D143879B36
2 changed files with 54 additions and 0 deletions

27
scripts/produce-8-beta-full.sh Executable file
View File

@ -0,0 +1,27 @@
#!/bin/bash
source "$(dirname "$0")/common-8"
export PATH=/usr/sbin:/usr/bin:/root/bin
bash produce-8-beta.sh
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
exit 1
fi
unset ret_val
bash updates-8-extras-beta.sh
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
exit 1
fi
unset ret_val
bash updates-8-plus-beta.sh
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
exit 1
fi
unset ret_val

View File

@ -3,6 +3,33 @@
source "$(dirname "$0")/common-8"
export PATH=/usr/sbin:/usr/bin:/root/bin
bash produce-8-lookahead.sh
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
exit 1
fi
unset ret_val
bash updates-8-devel-lookahead.sh
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
exit 1
fi
unset ret_val
bash updates-8-extras-lookahead.sh
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
exit 1
fi
unset ret_val
bash updates-8-plus-lookahead.sh
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
exit 1
fi
unset ret_val