From fee4fbb4215b6d67ec9924df1dfd13991134d067 Mon Sep 17 00:00:00 2001 From: funk-on-code <113871227+funk-on-code@users.noreply.github.com> Date: Wed, 19 Oct 2022 03:30:41 +0000 Subject: [PATCH] Silence / Correct some Shellcheck Warnings. Quote variables correctly to silence shellcheck warnings. (run with shellcheck -f diff -s bash install.sh) Signed-off-by: funk-on-code <113871227+funk-on-code@users.noreply.github.com> --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 5330b92..4859299 100755 --- a/install.sh +++ b/install.sh @@ -92,8 +92,8 @@ parted -s "$DISK" \ mkpart cryptroot 128MiB 100% \ sleep 0.1 -ESP="/dev/$(lsblk $DISK -o NAME,PARTLABEL | grep ESP| cut -d " " -f1 | cut -c7-)" -cryptroot="/dev/$(lsblk $DISK -o NAME,PARTLABEL | grep cryptroot | cut -d " " -f1 | cut -c7-)" +ESP="/dev/$(lsblk "$DISK" -o NAME,PARTLABEL | grep ESP | cut -d " " -f1 | cut -c7-)" +cryptroot="/dev/$(lsblk "$DISK" -o NAME,PARTLABEL | grep cryptroot | cut -d " " -f1 | cut -c7-)" # Informing the Kernel of the changes. echo "Informing the Kernel about the disk changes." @@ -101,7 +101,7 @@ partprobe "$DISK" # Formatting the ESP as FAT32. echo "Formatting the EFI Partition as FAT32." -mkfs.fat -s 2 -F 32 $ESP &>/dev/null +mkfs.fat -s 2 -F 32 "$ESP" &>/dev/null # Creating a LUKS Container for the root partition. echo "Creating LUKS Container for the root partition." @@ -202,7 +202,7 @@ mount -o ssd,noatime,space_cache=v2,autodefrag,compress=zstd:15,discard=async,no mount -o ssd,noatime,space_cache=v2,autodefrag,compress=zstd:15,discard=async,nodatacow,nodev,nosuid,noexec,subvol=@/cryptkey $BTRFS /mnt/cryptkey mkdir -p /mnt/boot/efi -mount -o nodev,nosuid,noexec $ESP /mnt/boot/efi +mount -o nodev,nosuid,noexec "$ESP" /mnt/boot/efi kernel_selector