Skip to content

Commit

Permalink
Revert "Allow "clangd.path" to point to a shell script (clangd#708)"
Browse files Browse the repository at this point in the history
This reverts commit 0c2d40d.
  • Loading branch information
HighCommander4 committed Nov 13, 2024
1 parent bfe29da commit 9830163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clangd-context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class ClangdContext implements vscode.Disposable {
const clangd: vscodelc.Executable = {
command: clangdPath,
args: await config.get<string[]>('arguments'),
options: {cwd: vscode.workspace.rootPath || process.cwd(), shell: true}
options: {cwd: vscode.workspace.rootPath || process.cwd()}
};
const traceFile = config.get<string>('trace');
if (!!traceFile) {
Expand Down

0 comments on commit 9830163

Please sign in to comment.