From fa5cedc63ac4a87d0e5f664df342ab32c4f4989a Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 6 Feb 2024 16:51:55 -0800 Subject: [PATCH] Add anaconda workaround build for #2262892 This adds a scratch build with my proposed patch: https://github.com/rhinstaller/anaconda/pull/5460 to get the tests to start passing again, so we don't have the flood of red which makes it hard to spot other problems. 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 94782993..fd125b77 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -476,7 +476,7 @@ sub get_workarounds { my %workarounds = ( "38" => [], "39" => [], - "40" => [], + "40" => ["113074492"], ); my $advortasks = $workarounds{$version}; return @$advortasks;