From 3f611f96b6b08fd7cf04207c8e32e9b5f432ba6a Mon Sep 17 00:00:00 2001 From: Logan Fick Date: Tue, 24 Jun 2025 19:09:51 -0400 Subject: [PATCH] Fixed syntax error preventing AMD microcode installation. --- install-arch-linux.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-arch-linux.sh b/install-arch-linux.sh index 07ade14..13354e5 100755 --- a/install-arch-linux.sh +++ b/install-arch-linux.sh @@ -131,10 +131,10 @@ print "Installing CPU microcode..." cpu_vendor=$(grep -m 1 'vendor_id' /proc/cpuinfo | awk '{print $3}') if [[ "${cpu_vendor}" == "GenuineIntel" ]]; then arch-chroot /mnt pacman --noconfirm -S intel-ucode -elif [[ "{$cpu_vendor}" == "AuthenticAMD" ]]; then +elif [[ "${cpu_vendor}" == "AuthenticAMD" ]]; then arch-chroot /mnt pacman --noconfirm -S amd-ucode else - echo "Unknown CPU vendor: {$cpu_vendor}. Please install microcode manually after installation, if available." + echo "Unknown CPU vendor: ${cpu_vendor}. Please install microcode manually after installation, if available." fi ## Arch Linux Installation Guide Step 3.1 - Fstab