azure-pipelines-tasks-webdeployment-common 4.242.0 → 4.243.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/ziputility.js +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "azure-pipelines-tasks-webdeployment-common",
3
- "version": "4.242.0",
3
+ "version": "4.243.0",
4
4
  "description": "Common Lib for MSDeploy Utility",
5
5
  "repository": {
6
6
  "type": "git",
package/ziputility.js CHANGED
@@ -140,7 +140,10 @@ exports.archiveFolder = archiveFolder;
140
140
  function getArchivedEntries(archivedPackage) {
141
141
  return __awaiter(this, void 0, void 0, function* () {
142
142
  var deferred = Q.defer();
143
- const zip = new StreamZip.async({ file: archivedPackage });
143
+ const zip = new StreamZip.async({
144
+ file: archivedPackage,
145
+ skipEntryNameValidation: true
146
+ });
144
147
  zip.entries().then(entries => {
145
148
  var packageConmponent = {
146
149
  'entries': Object.keys(entries)