Add choice for installing base-devel

This commit is contained in:
natemaia
2018-12-03 01:29:25 -08:00
parent 5258991023
commit b1243fcba1
5 changed files with 22 additions and 10 deletions

View File

@ -10,7 +10,7 @@
# immutable globals
readonly VER="1.7.24" # Installer version
readonly VER="1.7.25" # Installer version
readonly DIST="ArchLabs" # Linux distributor
readonly MNT="/mnt/install" # Install mountpoint
readonly ERR="/tmp/errlog" # Built-in error log
@ -47,7 +47,7 @@ main()
fi
fi
# setting $SELECTED to $SELECTED - 1 when a step fails retains the highlighted menu item
# setting $SELECTED to ($SELECTED - 1) when failing keeps the highlight
case $SELECTED in
1) device_tree ;;
2) partition || SELECTED=1 ;;
@ -69,9 +69,9 @@ done
# trap Ctrl-C to properly exit
trap sigint INT
for arg in "$@"; do case $arg in
--debug|-d) debug ;;
esac done
for arg in "$@"; do
[[ $arg =~ (--debug|-d) ]] && debug
done
# initial prep
select_language