mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 08:44:49 +00:00
13 lines
694 B
Bash
Executable File
13 lines
694 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-x64-baseline --outfile ./bin/linux-x64-compatibility &&
|
|
chmod +x ./bin/linux-x64-compatibility &&
|
|
bun build ./proxy.ts --compile --minify --target=bun-linux-arm64-modern --outfile ./bin/linux-arm64 &&
|
|
chmod +x ./bin/linux-arm64 &&
|
|
bun build ./proxy.ts --compile --minify --target=bun-linux-arm64-baseline --outfile ./bin/linux-arm64-compatibility &&
|
|
chmod +x ./bin/linux-arm64-compatibility
|