cb19686d79
Provide a prebuilt binary for Linux. Fixes #5327 <https://github.com/Genymobile/scrcpy/issues/5327> PR #5515 <https://github.com/Genymobile/scrcpy/pull/5515>
13 lines
316 B
Bash
Executable File
13 lines
316 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
|
. build_common
|
|
|
|
cd "$OUTPUT_DIR"
|
|
sha256sum "scrcpy-server-$VERSION" \
|
|
"scrcpy-linux-$VERSION.tar.gz" \
|
|
"scrcpy-win32-$VERSION.zip" \
|
|
"scrcpy-win64-$VERSION.zip" \
|
|
| tee SHA256SUMS.txt
|
|
echo "Release checksums generated in $PWD/SHA256SUMS.txt"
|