From 4b3ec2831770d649f2f61fac0860ce4bc61f56f1 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Thu, 18 Apr 2024 18:49:25 +0100 Subject: Fix incorrect quoting --- install-artix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-artix.sh b/install-artix.sh index 23ff0da..f07e0d9 100755 --- a/install-artix.sh +++ b/install-artix.sh @@ -326,7 +326,7 @@ devices="resume=LABEL=SWAP" ## when using a btrfs swapfile, an offset is required for hibernation to work ## https://man.archlinux.org/man/btrfs.5#HIBERNATION -devices+=" resume_offset=\"$(btrfs inspect-internal map-swapfile -r $swapfile)\"" +devices+=" resume_offset=$(btrfs inspect-internal map-swapfile -r $swapfile)" ## add cryptdevice partition if enabled [[ "${encrypt}" == true ]] && devices+=" cryptdevice=LABEL=LUKS:root" -- cgit