scripts: 5-bundle.sh: Minor improvements

This commit is contained in:
Albert S. 2022-06-28 23:33:17 +02:00
parent 8e680e01cd
commit 19b6a59a41
1 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,8 @@ set -e
DIRNAME="looqs-${TAG}"
ARCHIVENAME="${DIRNAME}.tar.xz"
mv out ${DIRNAME}
rm -rf $DIRNAME*
cp -a out ${DIRNAME}
cp src/looqs-gui ${DIRNAME}
cp src/looqs ${DIRNAME}
chmod 755 src/looqs-gui
@ -16,4 +17,4 @@ patchelf --set-rpath '$ORIGIN/../../' $( find "${DIRNAME}/lib/plugins/" | grep s
tar cfpvJ "${DIRNAME}".tar.xz "${DIRNAME}"
gpg -b --local-user "$SIGNING_KEY_EMAIL" "$ARCHIVENAME"
gpg --batch --no-tty -b --local-user "$SIGNING_KEY_EMAIL" "$ARCHIVENAME"