We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 697f32c commit 59c6666Copy full SHA for 59c6666
2 files changed
src/cli/claude-sm.ts
@@ -461,9 +461,7 @@ class ClaudeSM {
461
console.error(chalk.red('❌ Failed to launch Claude CLI.'));
462
if (err.code === 'ENOENT') {
463
console.error(
464
- chalk.gray(
465
- ' Not found. Set CLAUDE_BIN or install claude on PATH.'
466
- )
+ chalk.gray(' Not found. Set CLAUDE_BIN or install claude on PATH.')
467
);
468
} else if (err.code === 'EPERM' || err.code === 'EACCES') {
469
src/cli/codex-sm.ts
@@ -328,7 +328,7 @@ class CodexSM {
328
console.log(chalk.gray('─'.repeat(42)));
329
330
const codexBin = this.resolveCodexBin();
331
-
+
332
if (!codexBin) {
333
console.error(chalk.red('❌ Codex CLI not found.'));
334
console.log(
0 commit comments