Skip to content

Commit

Permalink
Fix #67, Launch target path contains backslashes
Browse files Browse the repository at this point in the history
Signed-off-by: paulober <[email protected]>
  • Loading branch information
paulober committed Sep 2, 2024
1 parent ca85baf commit 77c7b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/launchTargetPath.mts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default class LaunchTargetPathCommand extends CommandWithResult<string> {
"cmake.launchTargetPath"
);
if (path) {
return path;
return path.replaceAll("\\", "/");
}
}

Expand Down

0 comments on commit 77c7b7b

Please sign in to comment.