mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
remove errant --
in executeDiscoverProject
This commit is contained in:
parent
46e022098f
commit
1f5c535089
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ export async function discoverWorkspace(
|
|||
): Promise<JsonProject> {
|
||||
const paths = files.map((f) => f.uri.fsPath).join(" ");
|
||||
const joinedCommand = command.join(" ");
|
||||
const data = await executeDiscoverProject(`${joinedCommand} -- ${paths}`, options);
|
||||
const data = await executeDiscoverProject(`${joinedCommand} ${paths}`, options);
|
||||
return JSON.parse(data) as JsonProject;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue