From 2f0f89ebb978d4a12e4306e3791f422534a046dc Mon Sep 17 00:00:00 2001 From: 0x221E <0x221E@0xinfinity.dev> Date: Fri, 13 Feb 2026 22:54:42 +0100 Subject: [PATCH] Variable declaration fix --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index a49c2c7..da0dfb5 100755 --- a/install.sh +++ b/install.sh @@ -13,9 +13,9 @@ parted -s "$PART" set 1 esp on parted -s "$PART" mkpart primary linux-swap 3GB 27GB parted -s "$PART" mkpart primary ext4 27GB 100% -PART_BOOT = "${PART}1" -PART_SWAP = "${PART}2" -PART_ROOTHOME = "${PART}3" +PART_BOOT="${PART}1" +PART_SWAP="${PART}2" +PART_ROOTHOME="${PART}3" echo -n "$LUKS_PASS" | cryptsetup luksFormat --type luks2 --iter-time 5000 "${PART_ROOTHOME}" echo -n "$LUKS_PASS" | cryptsetup open "${PART_ROOTHOME}" roothome