We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 657f09d commit b0f1b5aCopy full SHA for b0f1b5a
.gitignore
@@ -4,6 +4,7 @@
4
/build/*.zip
5
/build/target
6
/build/install
7
+/build/*.sha256
8
/dev
9
/*.log
10
/debian/*.log
build/build-release
@@ -54,6 +54,9 @@ function build() {
54
if [[ $? != "0" ]]; then
55
exit $?
56
fi
57
+
58
+ cd "${CUR_DIR}"
59
+ shasum -a 256 "${PKG_NAME}" > "${PKG_NAME}.sha256"
60
elif [[ "$TARGET" == *"-windows-"* ]]; then
61
PKG_NAME="shadowsocks-v${VERSION}-stable.${TARGET}.zip"
62
PKG_PATH="${CUR_DIR}/${PKG_NAME}"
@@ -69,6 +72,9 @@ function build() {
69
72
70
73
71
74
75
76
77
78
79
80
echo "* Done build package ${PKG_NAME}"
0 commit comments