mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
7 lines
122 B
JavaScript
Generated
7 lines
122 B
JavaScript
Generated
process.exitCode = 1;
|
|
|
|
(async () => {
|
|
await Bun.$`${process.execPath} -e "console.log('hi')"`;
|
|
process.exit(0);
|
|
})();
|