You've already forked al-installer
Add choice for installing base-devel
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user