Browse Source

Adding 'list' to the auto-execute command allow-list

John Stearns 1 year ago
parent
commit
7c5b173838
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/core/Cline.ts

+ 2 - 1
src/core/Cline.ts

@@ -62,7 +62,8 @@ const ALLOWED_AUTO_EXECUTE_COMMANDS = [
 	'npx',
 	'tsc',
 	'git log',
-	'git diff'
+	'git diff',
+	'list'
 ] as const
 
 export class Cline {