pungi-rocky/scripts/produce-8-lookahead-full.sh
2023-09-03 16:41:50 -07:00

36 lines
493 B
Bash
Executable File

#!/bin/bash
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