Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Oct 31, 2024
1 parent 8890b7d commit cb40883
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions lib/helpers/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4626,8 +4626,11 @@ export function parsePixiLockFile(pixiLockFileName, path) {
},
properties: [
{ name: "cdx:pixi:operating_system", value: packageData["subdir"] },
{ name: "cdx:pixi:build_number", value: packageData["build_number"] },
{ name: "cdx:pixi:build", value: packageData["build"] },
{
name: "cdx:pixi:build_number",
value: `${packageData["build_number"]}`,
},
{ name: "cdx:pixi:build", value: `${packageData["build"]}` },
],
};
}
Expand Down
2 changes: 1 addition & 1 deletion types/lib/helpers/utils.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cb40883

Please sign in to comment.