From 9e3e1e52327429ec49e5910a9991765b492bb2d1 Mon Sep 17 00:00:00 2001 From: "Kevin Veen-Birkenbach [aka. Frantz]" Date: Sun, 4 Oct 2020 12:53:37 +0200 Subject: [PATCH] Solved variable bug --- scripts/image/base.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/image/base.sh b/scripts/image/base.sh index 84b3fd4..a7779af 100644 --- a/scripts/image/base.sh +++ b/scripts/image/base.sh @@ -47,7 +47,7 @@ make_working_folder(){ set_root_variables(){ info "Setting root variables..." && root_partition_uuid=$(blkid "$root_partition_path" -s UUID -o value) && - boot_partition_uuid=$(blkid "$boot_partition_uuid" -s UUID -o value) && + boot_partition_uuid=$(blkid "$boot_partition_path" -s UUID -o value) && root_mapper_name="arch-root-$root_partition_uuid" && root_mapper_path="/dev/mapper/$root_mapper_name" || error }