Files
bun.sh/test/cli/run/shell-keepalive-fixture-1.js
2024-09-06 16:28:50 -07:00

9 lines
134 B
JavaScript
Generated

process.exitCode = 1;
(async () => {
console.log("here 1");
await Bun.$`ls .`;
console.log("here 2");
process.exit(0);
})();