From bf89babc7508b688f02835c8b42f3646544bf499 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Sun, 12 Mar 2023 00:29:12 -0700 Subject: [PATCH] moving i386 to i686 --- scripts/updates-8-devel.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/updates-8-devel.sh b/scripts/updates-8-devel.sh index 39f4480..152753d 100755 --- a/scripts/updates-8-devel.sh +++ b/scripts/updates-8-devel.sh @@ -20,3 +20,10 @@ else fi time $CMD + +if [ $? -eq 0 ]; then + pushd "${TARGET_DIR}/latest-Rocky-$SHORT-8/compose/$SHORT" || { echo "Could not switch."; exit 1; } + echo "Moving i386 to i686" + mv i386 i686 + popd || { echo "Could not switch."; exit 1; } +fi