Add package list to the installer package

This commit is contained in:
natemaia
2018-11-11 23:59:56 -08:00
parent 3c76cf943a
commit 76a62ee6da
7 changed files with 225 additions and 39 deletions

View File

@ -8,7 +8,7 @@
# immutable globals
readonly VER="1.7.18" # Installer version
readonly VER="1.7.19" # Installer version
readonly DIST="ArchLabs" # Linux distributor
readonly MNT="/mnt/install" # Install mountpoint
readonly ERR="/tmp/errlog" # Built-in error log
@ -16,7 +16,11 @@ readonly DBG="/tmp/debuglog" # Built-in error log
main() {
if [[ $CURRENT_MENU != "main" ]]; then
SELECTED=1
if [[ $SAVED ]]; then
SELECTED=$((SAVED + 1))
else
SELECTED=1
fi
CURRENT_MENU="main"
elif (( SELECTED < 9 )); then
((SELECTED++)) # increment the highlighted menu item
@ -33,7 +37,7 @@ main() {
# and that the needed config variables and user variables have been set up
if [[ $SELECTED ]]; then
if [[ $SELECTED -eq 8 || $SELECTED -eq 6 ]]; then
{ [[ $SELECTED -eq 8 ]] && preinstall_check 1 || preinstall_check; } || return 1
{ [[ $SELECTED -eq 8 ]] && preinstall_checks 1 || preinstall_checks; } || return 1
elif [[ ($SELECTED -eq 2 || $SELECTED -eq 5) && $WARN != true ]]; then
msgbox "$_PrepTitle" "$_WarnMount" && WARN=true
fi