Remove wait at end of install

This commit is contained in:
natemaia 2019-01-11 15:34:46 -08:00
parent 7c0d730758
commit d6e930cea2

View File

@ -8,7 +8,7 @@
# Some ideas and code has been taken from other installers # Some ideas and code has been taken from other installers
# AIF, Cnichi, Calamares, The Arch Wiki.. Credit where credit is due # AIF, Cnichi, Calamares, The Arch Wiki.. Credit where credit is due
VER="1.8.8" # version VER="1.8.9" # version
DIST="ArchLabs" # distributor DIST="ArchLabs" # distributor
MNT="/mnt" # mountpoint MNT="/mnt" # mountpoint
@ -1197,8 +1197,6 @@ install()
create_user create_user
login_manager login_manager
chrun "chown -Rf $NEWUSER:users /home/$NEWUSER" chrun "chown -Rf $NEWUSER:users /home/$NEWUSER"
printf "\nThe install section is now finished, press any key to continue.\n"
read -rn1
edit_configs edit_configs
} }
@ -2421,7 +2419,7 @@ prechecks()
msgbox "$_ErrTitle" "$_ErrNoMount" msgbox "$_ErrTitle" "$_ErrNoMount"
SELECTED=4 SELECTED=4
return 1 return 1
elif [[ $# -eq 1 && $CONFIG_DONE != true && ! $NEWUSER ]]; then elif [[ $# -eq 1 && ! $NEWUSER ]]; then
msgbox "$_ErrTitle" "\nYou need to create a user first.\n" msgbox "$_ErrTitle" "\nYou need to create a user first.\n"
SELECTED=5 SELECTED=5
return 1 return 1