Skip to content

Commit 8b4e7b9

Browse files
ochafikclaude
andcommitted
chore: force stdout flush in setup-bun for CI debugging
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 514eeaa commit 8b4e7b9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

scripts/setup-bun.mjs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,10 +182,13 @@ function setupBinLink(bunPath) {
182182
console.log(`Bun linked to: ${bunLink}`);
183183
}
184184

185+
// Force immediate output
186+
process.stdout.write("[setup-bun] Script starting...\n");
187+
185188
async function main() {
186-
console.log(`[setup-bun] Setting up bun for ${os} ${arch}...`);
187-
console.log(`[setup-bun] Project root: ${projectRoot}`);
188-
console.log(`[setup-bun] Node modules: ${nodeModules}`);
189+
process.stdout.write(`[setup-bun] Setting up bun for ${os} ${arch}...\n`);
190+
process.stdout.write(`[setup-bun] Project root: ${projectRoot}\n`);
191+
process.stdout.write(`[setup-bun] Node modules: ${nodeModules}\n`);
189192

190193
let bunPath = findBunBinary();
191194

0 commit comments

Comments
 (0)