We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--
executeDiscoverProject
1 parent ba4f1be commit ff47cf3Copy full SHA for ff47cf3
editors/code/src/ctx.ts
@@ -56,7 +56,7 @@ export async function discoverWorkspace(
56
): Promise<JsonProject> {
57
const paths = files.map((f) => f.uri.fsPath).join(" ");
58
const joinedCommand = command.join(" ");
59
- const data = await executeDiscoverProject(`${joinedCommand} -- ${paths}`, options);
+ const data = await executeDiscoverProject(`${joinedCommand} ${paths}`, options);
60
return JSON.parse(data) as JsonProject;
61
}
62
0 commit comments