From 782a24aa2f68bf552be1aa55bde834a2fa1da901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Mon, 25 Jul 2022 16:19:50 +0200 Subject: [PATCH] fix typo --- installer/install-arch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/install-arch b/installer/install-arch index 78856d8..65c86fd 100755 --- a/installer/install-arch +++ b/installer/install-arch @@ -87,8 +87,8 @@ echo "${password}" | cryptsetup open "${part_luks}" "${cryptlvm}" pvcreate "${mapped_device}" vgcreate "${vlgrp}" "${mapped_device}" -lvcreate -L "{$swap_size}" "${vlgrp}" -n swap -lvcreate -L "{$root_size}" "${vlgrp}" -n root +lvcreate -L "${swap_size}" "${vlgrp}" -n swap +lvcreate -L "${root_size}" "${vlgrp}" -n root lvcreate -l '99%FREE' "${vlgrp}" -n home mkfs.fat -F32 "${part_boot}"