File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/ServiceManagement/Services/Commands/Websites Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,10 +89,10 @@ public override void ExecuteCmdlet()
89
89
90
90
if ( ! File . Exists ( fullSetParametersFile ) )
91
91
{
92
- if ( File . Exists ( Path . GetDirectoryName ( fullPackage ) + " \\ " + fullSetParametersFile ) )
92
+ if ( File . Exists ( Path . Combine ( Path . GetDirectoryName ( fullPackage ) , fullSetParametersFile ) ) )
93
93
{
94
- WriteVerbose ( "Setting path for Parameters file to local one to package: " + Path . GetDirectoryName ( fullPackage ) + " \\ " + fullSetParametersFile ) ;
95
- fullSetParametersFile = Path . GetDirectoryName ( fullPackage ) + " \\ " + fullSetParametersFile ;
94
+ WriteVerbose ( "Setting path for Parameters file to local one to package: " + Path . Combine ( Path . GetDirectoryName ( fullPackage ) , fullSetParametersFile ) ) ;
95
+ fullSetParametersFile = Path . Combine ( Path . GetDirectoryName ( fullPackage ) , fullSetParametersFile ) ;
96
96
}
97
97
}
98
98
You can’t perform that action at this time.
0 commit comments