mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 08:14:48 +00:00
9 lines
374 B
Bash
Executable File
9 lines
374 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo 'Make sure you are running this in the `proxy` directory' &&
|
|
rm -rf ./bin &&
|
|
mkdir ./bin &&
|
|
bun build ./proxy.ts --compile --minify --target=bun-linux-x64-modern --outfile ./bin/linux-x64 &&
|
|
chmod +x ./bin/linux-x64 &&
|
|
bun build ./proxy.ts --compile --minify --target=bun-linux-arm64-modern --outfile ./bin/linux-arm64 &&
|
|
chmod +x ./bin/linux-arm64
|