mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-05-31 04:37:19 +02:00
18 lines
345 B
Bash
Executable File
18 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
|
|
build_all () {
|
|
# Clear screen
|
|
printf "\033c"
|
|
|
|
# Build all variants
|
|
bun build.ts --version $1 --variant full --pretty
|
|
bun build.ts --version $1 --variant full --meta
|
|
# bun build.ts --version $1 --variant lite
|
|
|
|
# Wait for key
|
|
read -p ">> Press Enter to build again..."
|
|
build_all $1
|
|
}
|
|
|
|
build_all $1
|