From 904cd16a5b42f402bc78fa32af6294d3d6e81f3d Mon Sep 17 00:00:00 2001 From: natemaia Date: Sun, 1 Mar 2020 22:50:51 -0800 Subject: [PATCH] Fix: bad return in select_login causing packages never to be added. --- archlabs-installer | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/archlabs-installer b/archlabs-installer index dd7ea42..2dd888d 100755 --- a/archlabs-installer +++ b/archlabs-installer @@ -8,7 +8,7 @@ # check for syntax errors # set -n -VER=2.1.15 +VER=2.1.16 # default values { @@ -298,6 +298,7 @@ select_login() yesno "Autologin" "$(sed "s|USER|$NEWUSER|g; s|RC|$LOGINRC|g" <<< "$_autologin")" && AUTOLOGIN=true ;; esac + return 0 } select_config() @@ -438,6 +439,7 @@ select_bootldr() "syslinux" "A collection of boot loaders for booting drives, CDs, or over the network (no chainloading support)" || return 1 fi setup_${BOOTLDR} + return 0 } select_sessions()