1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-10-02 02:17:21 +00:00

setup_repos: don't die on tag/COPR if there are workarounds

whoops, this bailout is too hard. we get here on tag/COPR path
if there are workarounds, that is fine.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-06-10 23:46:18 -07:00
parent 9cf8e1b296
commit a36e86fcf8

View File

@ -627,7 +627,7 @@ sub setup_repos {
$udstring =~ s/_/,/; $udstring =~ s/_/,/;
} }
else { else {
die "Neither ADVISORY_NVRS nor KOJITASK set! Don't know what to do" unless ($args{waonly}); die "Neither ADVISORY_NVRS nor KOJITASK set! Don't know what to do" unless (@was && ($args{waonly} || $tag || $copr));
} }
my $cmd = "/usr/local/bin/setup_repos.py"; my $cmd = "/usr/local/bin/setup_repos.py";
# don't download updates if we're in workarounds-only mode or testing a tag or COPR # don't download updates if we're in workarounds-only mode or testing a tag or COPR