mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-10-31 18:31:24 +00:00
28 lines
376 B
Bash
Executable File
28 lines
376 B
Bash
Executable File
#!/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-devel-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
|