From c461a114512aa72513cc450a2eec9c526933ddf0 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 27 Jan 2025 14:24:18 -0800 Subject: [PATCH] setup_repos: fix for case where we test 3+ tasks 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 82db2755..8ce235f0 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -626,7 +626,7 @@ sub setup_repos { # Koji task case (KOJITASK will be set). If multiple tasks, # they're concatenated with underscores, switch to commas $udstring = get_var("KOJITASK"); - $udstring =~ s/_/,/; + $udstring =~ s/_/,/g; } else { die "Neither ADVISORY_NVRS nor KOJITASK set! Don't know what to do" unless (@was && ($args{waonly} || $tag || $copr));