Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/ctx.ts')
| -rw-r--r-- | editors/code/src/ctx.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts index 5b019d6aeb..407d976bab 100644 --- a/editors/code/src/ctx.ts +++ b/editors/code/src/ctx.ts @@ -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; } |