Skip to content

Commit ffc7c37

Browse files
authored
fix: the continue loop error in the device selection logic (#456)
1 parent 00ce451 commit ffc7c37

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/AppConsole.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1071,7 +1071,7 @@ public class AppConsole : GLib.Object {
10711071
}
10721072

10731073
dev = read_stdin_device(device_list, grub_device_default);
1074-
if (dev != null) { continue; }
1074+
if (dev != null) { break; }
10751075
}
10761076

10771077
if (dev == null){

0 commit comments

Comments
 (0)