We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.1.26+0a37423ba
Darwin 23.6.0 arm64 arm
// Silently fails async function main() { await Bun.$`bun --version`.quiet(); console.log('Hello World'); } main(); // Works async function main() { await Bun.$`bun --version`.quiet(); console.log('Hello World'); } await main(); // Works async function main() { await Bun.$`bun --version`; console.log('Hello World'); } main(); // Works async function main() { await Bun.$`echo hi`.quiet(); console.log('Hello World'); } main();
The first example above should print "Hello World"
It exits silently
Probably something to do with spawning processes?
The text was updated successfully, but these errors were encountered:
Fixed in Bun v1.1.27
Sorry, something went wrong.
zackradisic
No branches or pull requests
What version of Bun is running?
1.1.26+0a37423ba
What platform is your computer?
Darwin 23.6.0 arm64 arm
What steps can reproduce the bug?
What is the expected behavior?
The first example above should print "Hello World"
What do you see instead?
It exits silently
Additional information
Probably something to do with spawning processes?
The text was updated successfully, but these errors were encountered: