From 6c6e7f0a0cb1147efb79fcccb23c7030dcc8bd38 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Sun, 3 Sep 2023 16:41:50 -0700 Subject: [PATCH] force ret_val --- scripts/produce-8-beta-full.sh | 27 +++++++++++++++++++++++++++ scripts/produce-8-lookahead-full.sh | 27 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100755 scripts/produce-8-beta-full.sh 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