Files
bun-src/test/cli/run/shell-keepalive-fixture-1.js
2026-08-27 21:09:14 +00: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);
})();