From 0745aac9549e0fb654775ec56eacdff81cd5f606 Mon Sep 17 00:00:00 2001 From: natemaia Date: Sat, 5 Dec 2020 11:58:19 -0800 Subject: [PATCH] Fix: size not being used in live setup --- installer | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer b/installer index 08a9702..507ebe9 100755 --- a/installer +++ b/installer @@ -392,7 +392,7 @@ _lvmerrlvsize="\nInvalid value Entered.\n\nMust be a numeric value with 'M' (meg ############################################################################### # selection menus # main is the entry point which calls functions including outside of its block -# once those functions finished they always are returned here with the +# once those functions finish they always return here with the # exception of install_main(), it exits upon completion main() @@ -3064,7 +3064,7 @@ live() esac clear - if ! mount /run/archiso/cowspace -o remount,size=4G; then + if ! mount /run/archiso/cowspace -o remount,size=$s; then msg "Remount Fail" "\nUnable to remount root with a larger copy-on-write space, this is needed for installing packages.\n\nExiting..\n" 2 die 1 fi