1
0

build: extend release.sh so that all builders can use it

This commit is contained in:
SomberNight
2021-06-18 20:15:02 +02:00
parent 0e2d147afd
commit e54e6e4e09
5 changed files with 203 additions and 79 deletions

View File

@@ -33,8 +33,11 @@ for mine in $(ls dist/*.exe); do
chmod +x $out
if cmp -s $out $mine; then
echo "Success: $f"
gpg --sign --armor --detach signed/$f
#gpg --sign --armor --detach signed/$f
else
echo "Failure: $f"
exit 1
fi
done
exit 0