snyk 1.744.0 → 1.745.0

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.
@@ -5430,7 +5430,7 @@ async function assembleLocalPayloads(root, options) {
5430
5430
  const targetFile = scannedProject.targetFile || deps.plugin.targetFile || options.file;
5431
5431
  // Forcing options.path to be a string as pathUtil requires is to be stringified
5432
5432
  const targetFileRelativePath = targetFile
5433
- ? pathUtil.join(pathUtil.resolve(`${options.path || root}`), targetFile)
5433
+ ? pathUtil.resolve(pathUtil.resolve(`${options.path || root}`), targetFile)
5434
5434
  : '';
5435
5435
  let targetFileDir;
5436
5436
  if (targetFileRelativePath) {