From 1fdf849cbc44957c6c971cad6f748f3a99638ce2 Mon Sep 17 00:00:00 2001 From: Shuanglei Tao Date: Sun, 2 Sep 2018 23:53:34 +0800 Subject: [PATCH] scripts: include SHA256SUMS in cross build tarball --- scripts/cross-build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) mode change 100644 => 100755 scripts/cross-build.sh diff --git a/scripts/cross-build.sh b/scripts/cross-build.sh old mode 100644 new mode 100755 index 525bce0..6669c2b --- a/scripts/cross-build.sh +++ b/scripts/cross-build.sh @@ -143,5 +143,6 @@ done echo "=== Archiving bin to a tarball..." pushd bin - tar czvf ../ttyd_$TTYD_VERSION_linux.tar.gz ttyd_linux.* -popd \ No newline at end of file + sha256sum ttyd_linux.* > SHA256SUMS + tar czvf ../ttyd_${TTYD_VERSION}_linux.tar.gz ttyd_linux.* SHA256SUMS +popd -- 2.43.4