mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-03 07:05:26 +02:00

- add sparkle submodule - add an option to enable sparkle - modify entitlements - cleanup Info.plist Gitlab: #578 Change-Id: I7f562112a72a33e008ab316479fbaa68dc0e07f1
11 lines
234 B
Bash
Executable file
11 lines
234 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
if [ "$#" -ne 2 ]; then
|
|
echo "Usage: $0 update_archive private_key"
|
|
exit 1
|
|
fi
|
|
|
|
openssl=/usr/bin/openssl
|
|
$openssl dgst -sha1 -binary < "$1" | $openssl dgst -dss1 -sign "$2" | base64 $BASE64_OPTS
|
|
|