kexec-select-boot: Fix errant continue

This isn't in a loop, continue makes no sense.  ash had silently
ignored it.  Proceeding to the do_boot below is the correct behavior.

Signed-off-by: Jonathon Hall <jonathon.hall@puri.sm>
This commit is contained in:
Jonathon Hall 2023-03-25 17:06:47 -04:00
parent f1708bf3a7
commit 1217cffbc1
No known key found for this signature in database
GPG Key ID: 1E9C3CA91AE25114

View File

@ -292,8 +292,8 @@ user_select() {
if [ "$option_confirm" = "d" ]; then
if [ ! -r "$TMP_KEY_DEVICES" ]; then
# rerun primary boot loop to boot the new default option
continue
# continue below to boot the new default option
true
else
echo "+++ Rebooting to start the new default option"
sleep 2