You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
575 B
27 lines
575 B
#!/bin/sh |
|
# Copyright (c) 2014-2019 The Bitcoin Core developers |
|
# Distributed under the MIT software license, see the accompanying |
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php. |
|
|
|
export LC_ALL=C |
|
set -e |
|
|
|
UNSIGNED="$1" |
|
SIGNATURE="$2" |
|
ROOTDIR=dist |
|
OUTDIR=signed-app |
|
SIGNAPPLE=signapple |
|
|
|
if [ -z "$UNSIGNED" ]; then |
|
echo "usage: $0 <unsigned app> <signature>" |
|
exit 1 |
|
fi |
|
|
|
if [ -z "$SIGNATURE" ]; then |
|
echo "usage: $0 <unsigned app> <signature>" |
|
exit 1 |
|
fi |
|
|
|
${SIGNAPPLE} apply ${UNSIGNED} ${SIGNATURE} |
|
mv ${ROOTDIR} ${OUTDIR} |
|
echo "Signed: ${OUTDIR}"
|
|
|