mirror of
https://github.com/savoirfairelinux/jami-client-qt.git
synced 2025-12-16 23:14:57 +08:00
This is the first in a series for cleaning up the top directory (root) of the repository and move various files/folders into nicely organized directory structures. GitLab: #749 Change-Id: If59b74fff981df242bc26e62a070bdb81d7baded
12 lines
234 B
Bash
Executable File
12 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
|
|
|