diff options
| author | Blake Romero <blake@blkrom.com> | 2024-04-18 18:49:25 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2024-04-18 18:49:25 +0100 |
| commit | 4b3ec2831770d649f2f61fac0860ce4bc61f56f1 (patch) | |
| tree | 28872865053e2a6133583236e7a80cb82b951432 | |
| parent | 9869cc44f5104fda2209b036f6d011a70323f205 (diff) | |
Fix incorrect quoting
| -rwxr-xr-x | install-artix.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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" |
