azure-pipelines-tasks-webdeployment-common 4.224.0 → 4.226.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/deployusingmsdeploy.js +2 -1
- package/package.json +2 -2
package/deployusingmsdeploy.js
CHANGED
|
@@ -171,7 +171,8 @@ function executeMSDeploy(msDeployCmdArgs) {
|
|
|
171
171
|
for (var i = 0; i < msDeployCmdArgs.length; i++) {
|
|
172
172
|
tl.debug("arg#" + i + ": " + msDeployCmdArgs[i]);
|
|
173
173
|
}
|
|
174
|
-
|
|
174
|
+
// for windowsVerbatimArguments: false see https://github.com/microsoft/azure-pipelines-tasks/issues/17634
|
|
175
|
+
yield tl.exec("msdeploy", msDeployCmdArgs, { failOnStdErr: true, errStream: errObj, windowsVerbatimArguments: false });
|
|
175
176
|
deferred.resolve("Azure App service successfully deployed");
|
|
176
177
|
}
|
|
177
178
|
catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azure-pipelines-tasks-webdeployment-common",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.226.0",
|
|
4
4
|
"description": "Common Lib for MSDeploy Utility",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"ltx": "2.8.0",
|
|
26
26
|
"q": "1.4.1",
|
|
27
27
|
"winreg": "1.2.2",
|
|
28
|
-
"xml2js": "0.
|
|
28
|
+
"xml2js": "0.6.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"typescript": "4.0.2"
|