From 5379850780d681713f9ea313b160e557ca4d2695 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 24 Jan 2024 11:16:07 -0800 Subject: [PATCH] setup_repos: fix setup_repos.py call for KOJITASK case I forgot to actually set the string in this case. Whoops. Signed-off-by: Adam Williamson --- lib/utils.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils.pm b/lib/utils.pm index ecda67a7..94782993 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -605,6 +605,7 @@ sub setup_repos { elsif (get_var("KOJITASK")) { # Koji task case (KOJITASK will be set). If multiple tasks, # they're concatenated with underscores, switch to commas + $udstring = get_var("KOJITASK"); $udstring =~ s/_/,/; } else {