We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31796d0 commit b123ec5Copy full SHA for b123ec5
src/ServiceManagement/Services/Commands/Websites/PublishAzureWebsiteProject.cs
@@ -87,6 +87,15 @@ public override void ExecuteCmdlet()
87
}
88
89
90
+ if (!File.Exists(fullSetParametersFile))
91
+ {
92
+ if (File.Exists(Path.GetDirectoryName(fullPackage) + "\\" + fullSetParametersFile))
93
94
+ WriteVerbose("Setting path for Parameters file to local one to package: " + Path.GetDirectoryName(fullPackage) + "\\" + fullSetParametersFile);
95
+ fullSetParametersFile = Path.GetDirectoryName(fullPackage) + "\\" + fullSetParametersFile;
96
+ }
97
98
+
99
// If tokens are passed in, update the parameters file if there is one
100
if (Tokens != null && !string.IsNullOrEmpty(fullSetParametersFile))
101
{
0 commit comments