@rudderhq/cli 0.7.5 → 0.7.6

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.
package/dist/index.js CHANGED
@@ -21604,7 +21604,7 @@ function powershellQuote(value) {
21604
21604
  return `'${value.replaceAll("'", "''")}'`;
21605
21605
  }
21606
21606
  function buildWindowsZipExtractCommand(zipPath, outputDir) {
21607
- return { command: "tar.exe", args: ["-xf", zipPath, "-C", outputDir] };
21607
+ return { command: "powershell.exe", args: ["-NoProfile", "-NonInteractive", "-ExecutionPolicy", "Bypass", "-Command", `Expand-Archive -LiteralPath ${powershellQuote(zipPath)} -DestinationPath ${powershellQuote(outputDir)} -Force`] };
21608
21608
  }
21609
21609
  function buildWindowsRobocopyMirrorCommand(sourcePath, destinationPath) {
21610
21610
  return {