Skip to content

Commit 1a02b23

Browse files
committed
Add missin semicolon to ps script
1 parent ab046fe commit 1a02b23

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

browser/services/platform.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class Platform {
206206

207207
static getUserPath_win32() {
208208
return pify(child_process.exec)(
209-
'powershell.exe -executionpolicy bypass -command "[Environment]::GetEnvironmentVariable(\'path\', \'User\')[Environment]::Exit(0);"'
209+
'powershell.exe -executionpolicy bypass -command "[Environment]::GetEnvironmentVariable(\'path\', \'User\');[Environment]::Exit(0);"'
210210
).then(result=> Promise.resolve(result.replace(/\r?\n/g, '')));
211211
}
212212

0 commit comments

Comments
 (0)