mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-04-21 01:33:36 +00:00
Since commit 2687d20280, the Makefile
named release.mk stopped handling dependencies between recipes, because
they have to be executed separately (from different Github Actions
jobs).
There is no real benefit using a Makefile anymore. Replace them by
several individual release scripts for simplicity and readability.
11 lines
279 B
Bash
Executable file
11 lines
279 B
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
|
. build_common
|
|
|
|
cd "$OUTPUT_DIR"
|
|
sha256sum "scrcpy-server-$VERSION" \
|
|
"scrcpy-win32-$VERSION.zip" \
|
|
"scrcpy-win64-$VERSION.zip" \
|
|
| tee SHA256SUMS.txt
|
|
echo "Release checksums generated in $PWD/SHA256SUMS.txt"
|