From d988f98b81f6a5a04713844273eb560f72e1020d Mon Sep 17 00:00:00 2001 From: Xhofe Date: Sat, 26 Feb 2022 00:12:00 +0800 Subject: [PATCH] :green_heart: fix upx --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index 0eff73337ab..1f01ff221ea 100644 --- a/build.sh +++ b/build.sh @@ -67,8 +67,8 @@ BUILD() { mv alist-* build if [ "$1" != "release" ]; then cd build - upx -9 ./alist-linux - upx -9 ./alist-windows + upx -9 ./alist-linux* + upx -9 ./alist-windows* find . -type f -print0 | xargs -0 md5sum >md5.txt cat md5.txt cd .. @@ -118,8 +118,8 @@ BUILD_MUSL() { RELEASE() { cd alist/build - upx -9 ./alist-linux - upx -9 ./alist-windows + upx -9 ./alist-linux* + upx -9 ./alist-windows* find . -type f -print0 | xargs -0 md5sum >md5.txt cat md5.txt mkdir compress