mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
9 lines
134 B
JavaScript
Generated
9 lines
134 B
JavaScript
Generated
process.exitCode = 1;
|
|
|
|
(async () => {
|
|
console.log("here 1");
|
|
await Bun.$`ls .`;
|
|
console.log("here 2");
|
|
process.exit(0);
|
|
})();
|