diff options
| author | Cory Fields <[email protected]> | 2015-06-10 13:59:41 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-06-10 17:54:46 -0400 |
| commit | c110575a92ebe2e9a58b53d56aafa1f1ae37dbb2 (patch) | |
| tree | 82d80772eaba072c562c030820f25b11250b7920 /contrib/macdeploy/detached-sig-apply.sh | |
| parent | Merge pull request #6061 (diff) | |
| download | discoin-c110575a92ebe2e9a58b53d56aafa1f1ae37dbb2.tar.xz discoin-c110575a92ebe2e9a58b53d56aafa1f1ae37dbb2.zip | |
gitian: Use the new bitcoin-detached-sigs git repo for OSX signatures
Rather than fetching a signature.tar.gz from somewhere on the net, instruct
Gitian to use a signature from a tag in the bitcoin-detached-sigs repository
which corresponds to the tag of the release being built.
This changes detached-sig-apply.sh to take a dirname rather than a tarball as
an argument, though detached-sig-create.sh still outputs a tarball for
convenience.
Diffstat (limited to 'contrib/macdeploy/detached-sig-apply.sh')
| -rwxr-xr-x | contrib/macdeploy/detached-sig-apply.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/macdeploy/detached-sig-apply.sh b/contrib/macdeploy/detached-sig-apply.sh index 169f69043..781fe315e 100755 --- a/contrib/macdeploy/detached-sig-apply.sh +++ b/contrib/macdeploy/detached-sig-apply.sh @@ -20,7 +20,7 @@ fi rm -rf ${TEMPDIR} && mkdir -p ${TEMPDIR} tar -C ${TEMPDIR} -xf ${UNSIGNED} -tar -C ${TEMPDIR} -xf ${SIGNATURE} +cp -rf "${SIGNATURE}"/* ${TEMPDIR} if [ -z "${PAGESTUFF}" ]; then PAGESTUFF=${TEMPDIR}/pagestuff |