pungi-rocky/scripts/produce-8-beta-full.sh

28 lines
376 B
Bash
Raw Permalink Normal View History

2023-09-03 23:41:50 +00:00
#!/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
2023-09-21 09:02:34 +00:00
bash updates-8-devel-beta.sh
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
exit 1
fi
unset ret_val
2023-09-03 23:41:50 +00:00
bash updates-8-extras-beta.sh
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
exit 1
fi
unset ret_val