mirror of
https://github.com/linuxboot/heads.git
synced 2025-04-07 19:34:26 +00:00
Merge branch 'skip_confirmation_on_force' of https://github.com/kylerankin/heads
This commit is contained in:
commit
05a36ce3d9
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user