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