Skip to content

Commit ff47cf3

Browse files
committed
remove errant -- in executeDiscoverProject
1 parent ba4f1be commit ff47cf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/ctx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export async function discoverWorkspace(
5656
): Promise<JsonProject> {
5757
const paths = files.map((f) => f.uri.fsPath).join(" ");
5858
const joinedCommand = command.join(" ");
59-
const data = await executeDiscoverProject(`${joinedCommand} -- ${paths}`, options);
59+
const data = await executeDiscoverProject(`${joinedCommand} ${paths}`, options);
6060
return JSON.parse(data) as JsonProject;
6161
}
6262

0 commit comments

Comments
 (0)