Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0bf4a12

Browse files
committedFeb 11, 2016
Merge pull request #96 from rkeithhill/rkeithhill/is94-openise-with-spaces
Fixes #94 - specifically the Open in ISE issue.
2 parents c2bfef3 + dbe37a1 commit 0bf4a12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/features/OpenInISE.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ export function registerOpenInISECommand(): void {
1515
var ISEPath = process.env.windir + '\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe';
1616
}
1717

18-
ChildProcess.exec(ISEPath + ' -File ' + uri.fsPath).unref();
18+
ChildProcess.exec(ISEPath + ' -File "' + uri.fsPath + '"').unref();
1919
});
2020
}

0 commit comments

Comments
 (0)
Please sign in to comment.