diff --git a/scripts/produce-8-beta-full.sh b/scripts/produce-8-beta-full.sh new file mode 100755 index 0000000..c46cde7 --- /dev/null +++ b/scripts/produce-8-beta-full.sh @@ -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 diff --git a/scripts/produce-8-lookahead-full.sh b/scripts/produce-8-lookahead-full.sh index a5b1666..deb008f 100755 --- a/scripts/produce-8-lookahead-full.sh +++ b/scripts/produce-8-lookahead-full.sh @@ -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