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.
- package/package.json +1 -1
- package/ziputility.js +4 -1
package/package.json
CHANGED
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({
|
|
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)
|