mirror of https://github.com/Xhofe/alist
🎇 add unupx version
parent
6a6e3944d5
commit
8ed0afe80d
4
build.sh
4
build.sh
|
@ -77,7 +77,9 @@ BUILD() {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
cd build
|
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
|
find . -type f -print0 | xargs -0 md5sum >md5.txt
|
||||||
cat md5.txt
|
cat md5.txt
|
||||||
cd ..
|
cd ..
|
||||||
|
|
Loading…
Reference in New Issue