Skip to content

Commit

Permalink
fixed bug introduced from CR commit
Browse files Browse the repository at this point in the history
  • Loading branch information
janstaelensskyline committed Oct 8, 2024
1 parent d3c21bb commit 1b36264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CICD.Tools.CatalogUpload.Lib/CatalogMetaData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public bool SearchAndApplyCatalogYaml(IFileSystem fs, string startPath)
if (!String.IsNullOrWhiteSpace(p.SourceCodeUrl)) SourceCodeUri = p.SourceCodeUrl;

p.Owners?.ForEach(o => { Owners.Add(new CatalogOwner { Name = o.Name, Email = o.Email, Url = o.Url }); });
p.Tags?.AddRange(Tags);
p.Tags?.ForEach(Tags.Add);
}

return true;
Expand Down

0 comments on commit 1b36264

Please sign in to comment.