mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-24 01:15:32 +02: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
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
|
|
|