diff options
author | Andrew Chow <achow101-github@achow101.com> | 2021-01-07 13:42:07 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-01-07 15:33:19 -0500 |
commit | 95b06d21852b28712db6c710e420a58bdc1a0944 (patch) | |
tree | 47576051997abb4c852fed547bf2522c82bd3d85 /contrib/gitian-descriptors/gitian-osx-signer.yml | |
parent | 42bb1ea363286b088257cabccb686ef1887c1d3b (diff) |
gitian: use signapple to apply the MacOS code signature
Diffstat (limited to 'contrib/gitian-descriptors/gitian-osx-signer.yml')
-rw-r--r-- | contrib/gitian-descriptors/gitian-osx-signer.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/gitian-descriptors/gitian-osx-signer.yml b/contrib/gitian-descriptors/gitian-osx-signer.yml index 1bd342a993..214ca9823d 100644 --- a/contrib/gitian-descriptors/gitian-osx-signer.yml +++ b/contrib/gitian-descriptors/gitian-osx-signer.yml @@ -42,11 +42,12 @@ script: | export PATH="$HOME/.local/bin":$PATH cd .. - UNSIGNED=bitcoin-osx-unsigned.tar.gz + UNSIGNED_TARBALL=bitcoin-osx-unsigned.tar.gz + UNSIGNED_APP=dist/Bitcoin-Qt.app SIGNED=bitcoin-osx-signed.dmg - tar -xf ${UNSIGNED} + tar -xf ${UNSIGNED_TARBALL} OSX_VOLNAME="$(cat osx_volname)" - ./detached-sig-apply.sh ${UNSIGNED} signature/osx + ./detached-sig-apply.sh ${UNSIGNED_APP} signature/osx/dist ${WRAP_DIR}/xorrisofs -D -l -V "${OSX_VOLNAME}" -no-pad -r -dir-mode 0755 -o uncompressed.dmg signed-app ${WRAP_DIR}/dmg dmg uncompressed.dmg ${OUTDIR}/${SIGNED} |