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.
1 parent 168a865 commit f52b16aCopy full SHA for f52b16a
packages/core/src/codewhispererChat/tools/executeBash.ts
@@ -200,13 +200,13 @@ export class ExecuteBash {
200
}
201
const workspaceFolders = vscode.workspace.workspaceFolders
202
if (!workspaceFolders || workspaceFolders.length === 0) {
203
- return { requiresAcceptance: true, warning: destructiveCommandWarningMessage }
+ return { requiresAcceptance: true }
204
205
const isInWorkspace = workspaceFolders.some((folder) =>
206
isInDirectory(folder.uri.fsPath, fullPath)
207
)
208
if (!isInWorkspace) {
209
210
211
212
0 commit comments