Skip to content

Commit e06361d

Browse files
authored
Merge pull request #5141 from OmniSharp/bugfix/path-nix-mono
2 parents 36cd48a + 044dd91 commit e06361d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/omnisharp/launcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ function launchNix(launchPath: string, cwd: string, args: string[]): LaunchResul
408408

409409
function launchNixMono(launchPath: string, cwd: string, args: string[], environment: NodeJS.ProcessEnv, useDebugger: boolean): LaunchResult {
410410
let argsCopy = args.slice(0); // create copy of details args
411-
argsCopy.unshift(`"${launchPath}"`);
411+
argsCopy.unshift(launchPath);
412412
argsCopy.unshift("--assembly-loader=strict");
413413

414414
if (useDebugger) {

0 commit comments

Comments
 (0)