diff options
author | Andrew Chow <achow101-github@achow101.com> | 2022-03-09 09:09:40 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2022-03-09 10:38:24 -0500 |
commit | 0189df1d3171082caf743ef3b0968f43c71303f5 (patch) | |
tree | 3f2bca5a67c55c5f5bb6dfa67c326ae3a9525186 /contrib | |
parent | 6e9308c6d4ed9fbf909c7234ae31245747183be3 (diff) |
build, mac: Include arch in codesignature tarball
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/macdeploy/detached-sig-create.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/macdeploy/detached-sig-create.sh b/contrib/macdeploy/detached-sig-create.sh index 0d61ceb9df..f393331084 100755 --- a/contrib/macdeploy/detached-sig-create.sh +++ b/contrib/macdeploy/detached-sig-create.sh @@ -8,9 +8,11 @@ set -e ROOTDIR=dist BUNDLE="${ROOTDIR}/Bitcoin-Qt.app" +BINARY="${BUNDLE}/Contents/MacOS/Bitcoin-Qt" SIGNAPPLE=signapple TEMPDIR=sign.temp -OUT=signature-osx.tar.gz +ARCH=$(${SIGNAPPLE} info ${BINARY} | head -n 1 | cut -d " " -f 1) +OUT="signature-osx-${ARCH}.tar.gz" OUTROOT=osx/dist if [ -z "$1" ]; then |