cluster deploy extension: Add localization support and fix " to ' strings (#4332)

* Add localization support and fix " to ' strings

* Fix ${ usage
This commit is contained in:
Kevin Cunnane
2019-03-07 14:26:31 -08:00
committed by GitHub
parent 029c69ecd3
commit a4d99b78d5
10 changed files with 62 additions and 41 deletions

View File

@@ -172,12 +172,12 @@ export function shellEnvironment(baseEnvironment: any): any {
function pathVariableName(env: any): string {
if (isWindows()) {
for (const v of Object.keys(env)) {
if (v.toLowerCase() === "path") {
if (v.toLowerCase() === 'path') {
return v;
}
}
}
return "PATH";
return 'PATH';
}
function pathEntrySeparator() {