mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-04-21 01:33:36 +00:00
11 lines
283 B
Bash
11 lines
283 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -ex
|
||
|
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
||
|
|
OUTPUT_DIR="$PWD/output"
|
||
|
|
. build_common
|
||
|
|
cd .. # root project dir
|
||
|
|
|
||
|
|
mkdir -p "$OUTPUT_DIR"
|
||
|
|
cp "$WORK_DIR/build-server/server/scrcpy-server" "$OUTPUT_DIR/scrcpy-server-$VERSION"
|
||
|
|
echo "Generated '$OUTPUT_DIR/scrcpy-server-$VERSION'"
|