mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 07:04:22 +00:00
Auto merge of #16024 - lnicola:debug-workspace-path, r=lnicola
fix: Fix runnable cwd on Windows Fixes #16010
This commit is contained in:
commit
ceb4426cd6
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ export class Cargo {
|
|||
artifacts.push({
|
||||
fileName: message.executable,
|
||||
name: message.target.name,
|
||||
workspace: message.manifest_path.replace(/\/Cargo\.toml$/, ""),
|
||||
workspace: path.dirname(message.manifest_path),
|
||||
kind: message.target.kind[0],
|
||||
isTest: message.profile.test,
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue