From a4ff85695b88d69efce8e3a85498ad4287575a99 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 22 Feb 2023 08:04:29 -0800 Subject: [PATCH] handle_welcome_screen: only set _WELCOME_DONE if we saw it This is to handle a temporary condition where the screen isn't present on the KDE base disk images for F38 or F39 yet, so they only see it on the second boot on update tests, but don't handle it because we marked it as already 'done'. Signed-off-by: Adam Williamson --- lib/utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.pm b/lib/utils.pm index d8b25dfe..b439e6e6 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -769,11 +769,11 @@ sub handle_welcome_screen { send_key "esc"; } wait_still_screen 5; + set_var("_WELCOME_DONE", 1); } else { record_soft_failure "Welcome tour missing"; } - set_var("_WELCOME_DONE", 1); } sub gnome_initial_setup {