🎇 add unupx version

pull/661/head
Xhofe 2022-02-24 22:42:15 +08:00
parent 6a6e3944d5
commit 8ed0afe80d
1 changed files with 3 additions and 1 deletions

View File

@ -77,7 +77,9 @@ BUILD() {
fi
done
cd build
upx -9 ./*
for i in $(find . -type f -name "$appName-*"); do
upx -9 -o $i-upx $i
done
find . -type f -print0 | xargs -0 md5sum >md5.txt
cat md5.txt
cd ..