move wildcard out of quotes

This commit is contained in:
Louis Abel 2022-11-10 15:35:51 -07:00
parent ee7a0a0d2b
commit 29d2918a64
Signed by: label
GPG Key ID: B37E62D143879B36
2 changed files with 3 additions and 7 deletions

View File

@ -1,7 +1,7 @@
# To be sourced by scripts to use
# Revision must always start with a major number
REVISION=9.0
REVISION=9.1
ARCHES=(x86_64 aarch64 ppc64le s390x)
@ -9,7 +9,7 @@ MAJOR="${REVISION:0:1}"
MINOR="${REVISION:2:1}"
# comment or blank if needed
APPEND_TO_DIR="-RC2"
APPEND_TO_DIR="-RC1"
STAGING_ROOT="/mnt/repos-staging"
PRODUCTION_ROOT="/mnt/repos-production"
@ -54,10 +54,6 @@ ALL_REPOS=(
NONSIG_COMPOSE=(
Rocky
Extras
Rocky-devel
Plus
rockyrpi
)
declare -A SIG_COMPOSE

View File

@ -23,7 +23,7 @@ for COMPOSE in "${NONSIG_COMPOSE[@]}"; do
for ARCH in "${ARCHES[@]}"; do
for x in BaseOS Minimal; do
echo "${x} ${ARCH}: Moving ISO images"
mv "${x}/${ARCH}/iso/*" "isos/${ARCH}/"
mv "${x}/${ARCH}/iso/"* "isos/${ARCH}/"
done
pushd "isos/${ARCH}" || { echo "${ARCH}: Failed to change directory"; break; }
ln -s "Rocky-${REVISION}-${ARCH}-boot.iso" "Rocky-${ARCH}-boot.iso"