Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/happy-cli/scripts/claude_local_launcher.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
const fs = require('fs');

// Fix Windows Unicode rendering (box-drawing characters)
if (process.platform === 'win32') {
const { execSync } = require('child_process');
try {
execSync('chcp 65001', { stdio: 'ignore' });
} catch (e) {
// chcp not available, ignore
}
}

// Disable autoupdater (never works really)
process.env.DISABLE_AUTOUPDATER = '1';

Expand Down