Skip to content

Commit 3aa54f0

Browse files
Merge pull request #7133 from Microsoft/users/krishnaadityab/systeminfo_m134
App Service Deploy task fails due to incorrect isMSDeployPackage implementation
2 parents f4a79ed + 9045a72 commit 3aa54f0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Tasks/AzureRmWebAppDeployment/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 4,
2020
"Minor": 1,
21-
"Patch": 4
21+
"Patch": 5
2222
},
2323
"releaseNotes": "What's new in version 4.* (preview)<br />Supports Kudu Zip Deploy<br />Supports App Service Environments<br />Improved UI for discovering different App service types supported by the task<br/>Click [here](https://aka.ms/azurermwebdeployreadme) for more Information.",
2424
"minimumAgentVersion": "2.104.1",

Tasks/AzureRmWebAppDeployment/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 4,
2020
"Minor": 1,
21-
"Patch": 4
21+
"Patch": 5
2222
},
2323
"releaseNotes": "ms-resource:loc.releaseNotes",
2424
"minimumAgentVersion": "2.104.1",

Tasks/Common/webdeployment-common/utility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export async function isMSDeployPackage(webAppPackage: string ) {
148148
var isParamFilePresent = false;
149149
var pacakgeComponent = await zipUtility.getArchivedEntries(webAppPackage);
150150
if (((pacakgeComponent["entries"].indexOf("parameters.xml") > -1) || (pacakgeComponent["entries"].indexOf("Parameters.xml") > -1)) &&
151-
((pacakgeComponent["entries"].indexOf("systemInfo.xml") > -1) || (pacakgeComponent["entries"].indexOf("systeminfo.xml") > -1))) {
151+
((pacakgeComponent["entries"].indexOf("systemInfo.xml") > -1) || (pacakgeComponent["entries"].indexOf("systeminfo.xml") > -1) || (pacakgeComponent["entries"].indexOf("SystemInfo.xml") > -1))) {
152152
isParamFilePresent = true;
153153
}
154154
tl.debug("Is the package an msdeploy package : " + isParamFilePresent);

Tasks/IISWebAppDeploymentOnMachineGroup/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"version": {
1616
"Major": 0,
1717
"Minor": 0,
18-
"Patch": 38
18+
"Patch": 39
1919
},
2020
"demands": [],
2121
"minimumAgentVersion": "2.104.1",

Tasks/IISWebAppDeploymentOnMachineGroup/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"version": {
1616
"Major": 0,
1717
"Minor": 0,
18-
"Patch": 38
18+
"Patch": 39
1919
},
2020
"demands": [],
2121
"minimumAgentVersion": "2.104.1",

0 commit comments

Comments
 (0)