os_release: update for osbuild change to ISO names

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-03-14 08:25:26 -07:00
parent b8fddfa265
commit 41f2adaf46
1 changed files with 3 additions and 0 deletions

View File

@ -50,6 +50,9 @@ sub run {
my ($cannedver, $cannednum) = (split /-/, $isovar)[-2, -1];
# Get rid of the ".iso" part of the tag.
$cannednum =~ s/\.iso//g;
# also get rid of the arch, which osbuild puts in here
my $arch = get_var("ARCH");
$cannednum =~ s/\.$arch//g;
# Now, we merge the fields into one expression to create the correct canned tag
# that will contain both the version number and the build number.
my $cannedtag = "$cannedver.$cannednum";