remove unnecessary boot image

This commit is contained in:
Louis Abel 2023-09-24 10:59:53 -07:00
parent 129f1e2196
commit 4a4708b615
Signed by: label
GPG Key ID: B37E62D143879B36
3 changed files with 12 additions and 0 deletions

View File

@ -30,6 +30,10 @@ for COMPOSE in "${NONSIG_COMPOSE[@]}"; do
# Sort the ISO's
for ARCH in "${ARCHES[@]}"; do
for x in BaseOS Minimal; do
if [[ "${x}" != "BaseOS" ]]; then
echo "${x} ${ARCH}: Removing unnecessary boot image"
/bin/rm -v "${x}/${ARCH}/iso/"*boot*
fi
echo "${x} ${ARCH}: Moving ISO images"
mv "${x}/${ARCH}/iso/"* "isos/${ARCH}/"
done

View File

@ -30,6 +30,10 @@ for COMPOSE in "${NONSIG_COMPOSE[@]}"; do
# Sort the ISO's
for ARCH in "${ARCHES[@]}"; do
for x in BaseOS Minimal; do
if [[ "${x}" != "BaseOS" ]]; then
echo "${x} ${ARCH}: Removing unnecessary boot image"
/bin/rm -v "${x}/${ARCH}/iso/"*boot*
fi
echo "${x} ${ARCH}: Moving ISO images"
mv "${x}/${ARCH}/iso/"* "isos/${ARCH}/"
done

View File

@ -28,6 +28,10 @@ for COMPOSE in "${NONSIG_COMPOSE[@]}"; do
# Sort the ISO's
for ARCH in "${ARCHES[@]}"; do
for x in BaseOS Minimal; do
if [[ "${x}" != "BaseOS" ]]; then
echo "${x} ${ARCH}: Removing unnecessary boot image"
/bin/rm -v "${x}/${ARCH}/iso/"*boot*
fi
echo "${x} ${ARCH}: Moving ISO images"
mv "${x}/${ARCH}/iso/"* "isos/${ARCH}/"
done