Merge branch 'skip_confirmation_on_force' of https://github.com/kylerankin/heads

This commit is contained in:
Trammell hudson 2018-04-30 16:31:05 -04:00
commit 05a36ce3d9
Failed to extract signature

View File

@ -246,7 +246,12 @@ user_select() {
while [ "$option_confirm" != "y" -a "$option_confirm" != "d" ]
do
get_menu_option
confirm_menu_option
# In force boot mode, no need offer the option to set a default, just boot
if [ "$force_boot" = "y" ]; then
do_boot
else
confirm_menu_option
fi
if [ "$option_confirm" = 'd' ]; then
save_default_option