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 514eeaa commit 8b4e7b9Copy full SHA for 8b4e7b9
scripts/setup-bun.mjs
@@ -182,10 +182,13 @@ function setupBinLink(bunPath) {
182
console.log(`Bun linked to: ${bunLink}`);
183
}
184
185
+// Force immediate output
186
+process.stdout.write("[setup-bun] Script starting...\n");
187
+
188
async function main() {
- console.log(`[setup-bun] Setting up bun for ${os} ${arch}...`);
- console.log(`[setup-bun] Project root: ${projectRoot}`);
- 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`);
192
193
let bunPath = findBunBinary();
194
0 commit comments