@cyclonedx/cdxgen 8.6.0 → 8.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils.js +0 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyclonedx/cdxgen",
3
- "version": "8.6.0",
3
+ "version": "8.6.1",
4
4
  "description": "Creates CycloneDX Software Bill-of-Materials (SBOM) from source or container image",
5
5
  "homepage": "http://github.com/cyclonedx/cdxgen",
6
6
  "author": "Prabhu Subramanian <prabhu@appthreat.com>",
package/utils.js CHANGED
@@ -1589,10 +1589,6 @@ const executeGradleProperties = function (dir, rootPath, subProject) {
1589
1589
  "--build-cache"
1590
1590
  ];
1591
1591
  let gradleCmd = getGradleCommand(dir, rootPath);
1592
- if (process.env.GRADLE_ARGS) {
1593
- const addArgs = process.env.GRADLE_ARGS.split(" ");
1594
- gradlePropertiesArgs = gradlePropertiesArgs.concat(addArgs);
1595
- }
1596
1592
  console.log(
1597
1593
  "Executing",
1598
1594
  gradleCmd,