Skip to content
This repository was archived by the owner on Aug 14, 2020. It is now read-only.

Commit c348864

Browse files
committed
fixes
1 parent c8ef537 commit c348864

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ async function ExecScopeRun(homePath, command, cwd, dsn) {
5050
}
5151
let filename = `${homePath}/.dotnet/tools/scope-run`;
5252
if (process.platform === "win32") {
53-
filename = `${homePath}\\.dotnet\\tools\\scope-run.exe`
53+
filename = "scope-run";
5454
}
55+
console.log("Platform:", process.platform);
5556
await exec.exec(filename, [ command ], {
5657
cwd: cwd,
5758
env: envVars

0 commit comments

Comments
 (0)