Last active
October 2, 2020 14:10
Just for help on IRC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ -z ${DESKTOP_APT_FLAGS_SELECTED+x} ]]; then | |
options=() | |
options+=("recommends" "Install packages recommended by selected desktop packages" off) | |
options+=("suggests" "Install packages suggested by selected desktop packages" off) | |
DESKTOP_APT_FLAGS_SELECTED=$(\ | |
show_select_menu \ | |
"Choose Apt Additional FLags" \ | |
"$backtitle" \ | |
"Select to enable additional install flags for builds" \ | |
"${options[@]}") | |
unset options | |
fi | |
exit_with_error 'Testing' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment