### What version of Bun is running? 1.2.18+0d4089ea7 ### What steps can reproduce the bug? Hello, I've hit a bug with the build/compile feature when trying to embed 8 files or more. 1. Start the container ```bash docker run --rm --init -it --ulimit memlock=-1:-1 oven/bun:1.2.18-alpine /bin/sh ``` 2. Create the `app.js` file and 7 empty files to be embedded ```bash echo 'console.log("IT WORKS");' > app.js mkdir assets for i in $(seq 1 7); do touch assets/file-${i} ; done ``` 3. Build and run the binary. It works as expected. ```bash bun build --compile app.js assets/* ./app # IT WORKS ``` 4. Create an 8th file to be embedded, buid and run the binary. It fails silently (nothing is show and the exit code is 0) ```bash touch assets/file-8 bun build --compile app.js assets/* ./app ``` FYI, it works as expected when building without the `compile` flag: ```bash bun build --outdir=build app.js assets/* \ && bun run build/app.js # IT WORKS ```