Skip to content

Commit

Permalink
fix #1: "Debugger is not working"
Browse files Browse the repository at this point in the history
  • Loading branch information
weinand committed Nov 30, 2015
1 parent c9bc70b commit 090c7d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mono-debug",
"version": "0.10.3",
"version": "0.10.4",
"publisher": "isidor",
"description": "Visual Studio Code debug adapter for mono",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/MonoDebugSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public override Task<DebugResult> Launch(dynamic args)
program = programPath;
}

var result = Terminal.LaunchInTerminal(workingDirectory, mono_path, mono_args, program, arguments, environmentVariables);
var result = Terminal.LaunchInTerminal(workingDirectory, mono_path, mono_args, program, arguments, env);
if (!result.Success) {
return Task.FromResult(new DebugResult(3002, "launch: can't launch terminal ({reason})", new { reason = result.Message }));
}
Expand Down

0 comments on commit 090c7d9

Please sign in to comment.