remove errant -- in executeDiscoverProject

This commit is contained in:
David Barsky 2023-03-09 15:47:12 -05:00
parent 46e022098f
commit 1f5c535089

View file

@ -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;
}