From 019b97bc33e502e35fc794eab04a57687fd30666 Mon Sep 17 00:00:00 2001 From: Trevor Cooper Date: Wed, 6 Jul 2022 10:08:47 -0700 Subject: [PATCH] fix variable re-declaration warning/error --- tests/_boot_to_anaconda.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_boot_to_anaconda.pm b/tests/_boot_to_anaconda.pm index 778dd9fe..9aa372d2 100644 --- a/tests/_boot_to_anaconda.pm +++ b/tests/_boot_to_anaconda.pm @@ -31,7 +31,7 @@ sub run { $params .= "inst.repo=" . get_full_repo($repourl) . " "; } # Construct inst.addrepo arg for ADD_REPOSITORY_VARIATION - my $repourl = get_var("ADD_REPOSITORY_VARIATION"); + $repourl = get_var("ADD_REPOSITORY_VARIATION"); if ($repourl) { $params .= "inst.addrepo=addrepo," . get_full_repo($repourl) . " "; }