Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2020
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. if [[ $DESKTOP_APT_FLAGS != no && -z ${DESKTOP_APT_FLAGS_SELECTED+x} ]]; then
  2.  
  3. options=()
  4. for ${flag} in "${DESKTOP_APT_FLAGS}/"*; do
  5. options+=("${recomends}" "${suggest}" off)
  6. done
  7.  
  8. DESKTOP_APT_FLAGS_SELECTED=$(\
  9. show_select_menu \
  10. "Choose Apt Additional FLags" \
  11. "$backtitle" \
  12. "Select to enable additional install flags for builds" \
  13. "${options[@]}")
  14.  
  15. unset options
  16. fi
  17. exit_with_error 'Testing'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement