mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-11-25 14:21:36 +00:00
force ret_val
This commit is contained in:
parent
70b64bb53f
commit
6c6e7f0a0c
27
scripts/produce-8-beta-full.sh
Executable file
27
scripts/produce-8-beta-full.sh
Executable file
@ -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
|
@ -3,6 +3,33 @@
|
|||||||
source "$(dirname "$0")/common-8"
|
source "$(dirname "$0")/common-8"
|
||||||
export PATH=/usr/sbin:/usr/bin:/root/bin
|
export PATH=/usr/sbin:/usr/bin:/root/bin
|
||||||
bash produce-8-lookahead.sh
|
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
|
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
|
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
|
bash updates-8-plus-lookahead.sh
|
||||||
|
|
||||||
|
ret_val=$?
|
||||||
|
if [ "$ret_val" -ne 0 ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
unset ret_val
|
||||||
|
Loading…
Reference in New Issue
Block a user