Skip to content

Commit

Permalink
Merge branch 'zmanion-fixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
giterlizzi committed Jan 24, 2025
2 parents 43e13b5 + e9ed68c commit d6abbe5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/CSAF/ROLIE/Feed.pm
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@ sub add_entry {

my $integrity = $options->{integrity};

push @{$link}, {href => "$csaf_url.sha256", ref => 'hash'}
push @{$link}, {href => "$csaf_url.sha256", rel => 'hash'}
if (defined $integrity->{sha256} && $integrity->{sha256});

push @{$link}, {href => "$csaf_url.sha512", ref => 'hash'}
push @{$link}, {href => "$csaf_url.sha512", rel => 'hash'}
if (defined $integrity->{sha512} && $integrity->{sha512});

}

push @{$link}, {href => "$csaf_url.asc", ref => 'signature'}
push @{$link}, {href => "$csaf_url.asc", rel => 'signature'}
if (defined $options->{signature} && $options->{signature});

my $is_updated = 0;
Expand Down

0 comments on commit d6abbe5

Please sign in to comment.