forked from sig_core/toolkit
move wildcard out of quotes
This commit is contained in:
parent
ee7a0a0d2b
commit
29d2918a64
@ -1,7 +1,7 @@
|
|||||||
# To be sourced by scripts to use
|
# To be sourced by scripts to use
|
||||||
|
|
||||||
# Revision must always start with a major number
|
# Revision must always start with a major number
|
||||||
REVISION=9.0
|
REVISION=9.1
|
||||||
|
|
||||||
ARCHES=(x86_64 aarch64 ppc64le s390x)
|
ARCHES=(x86_64 aarch64 ppc64le s390x)
|
||||||
|
|
||||||
@ -9,7 +9,7 @@ MAJOR="${REVISION:0:1}"
|
|||||||
MINOR="${REVISION:2:1}"
|
MINOR="${REVISION:2:1}"
|
||||||
|
|
||||||
# comment or blank if needed
|
# comment or blank if needed
|
||||||
APPEND_TO_DIR="-RC2"
|
APPEND_TO_DIR="-RC1"
|
||||||
|
|
||||||
STAGING_ROOT="/mnt/repos-staging"
|
STAGING_ROOT="/mnt/repos-staging"
|
||||||
PRODUCTION_ROOT="/mnt/repos-production"
|
PRODUCTION_ROOT="/mnt/repos-production"
|
||||||
@ -54,10 +54,6 @@ ALL_REPOS=(
|
|||||||
|
|
||||||
NONSIG_COMPOSE=(
|
NONSIG_COMPOSE=(
|
||||||
Rocky
|
Rocky
|
||||||
Extras
|
|
||||||
Rocky-devel
|
|
||||||
Plus
|
|
||||||
rockyrpi
|
|
||||||
)
|
)
|
||||||
|
|
||||||
declare -A SIG_COMPOSE
|
declare -A SIG_COMPOSE
|
||||||
|
@ -23,7 +23,7 @@ for COMPOSE in "${NONSIG_COMPOSE[@]}"; do
|
|||||||
for ARCH in "${ARCHES[@]}"; do
|
for ARCH in "${ARCHES[@]}"; do
|
||||||
for x in BaseOS Minimal; do
|
for x in BaseOS Minimal; do
|
||||||
echo "${x} ${ARCH}: Moving ISO images"
|
echo "${x} ${ARCH}: Moving ISO images"
|
||||||
mv "${x}/${ARCH}/iso/*" "isos/${ARCH}/"
|
mv "${x}/${ARCH}/iso/"* "isos/${ARCH}/"
|
||||||
done
|
done
|
||||||
pushd "isos/${ARCH}" || { echo "${ARCH}: Failed to change directory"; break; }
|
pushd "isos/${ARCH}" || { echo "${ARCH}: Failed to change directory"; break; }
|
||||||
ln -s "Rocky-${REVISION}-${ARCH}-boot.iso" "Rocky-${ARCH}-boot.iso"
|
ln -s "Rocky-${REVISION}-${ARCH}-boot.iso" "Rocky-${ARCH}-boot.iso"
|
||||||
|
Loading…
Reference in New Issue
Block a user