diff options
| author | Patrick Lodder <[email protected]> | 2021-07-11 19:14:04 +0200 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2021-07-11 19:14:04 +0200 |
| commit | 783a2b55041c4cdbf0818b4b75afcc7b71803061 (patch) | |
| tree | 26d4578a16ec10ca9e7967a18957f7d16e01efc4 /contrib | |
| parent | Merge pull request #2235 from chey/alpine-musl (diff) | |
| download | discoin-783a2b55041c4cdbf0818b4b75afcc7b71803061.tar.xz discoin-783a2b55041c4cdbf0818b4b75afcc7b71803061.zip | |
[depends] fix all osslsigncode urls
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/gitian-descriptors/gitian-win-signer.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/gitian-descriptors/gitian-win-signer.yml b/contrib/gitian-descriptors/gitian-win-signer.yml index f2101228f..9c11bc89f 100644 --- a/contrib/gitian-descriptors/gitian-win-signer.yml +++ b/contrib/gitian-descriptors/gitian-win-signer.yml @@ -11,7 +11,7 @@ remotes: - "url": "https://github.com/dogecoin/dogecoin-detached-sigs.git" "dir": "signature" files: -- "osslsigncode-1.7.1.tar.gz" +- "osslsigncode_1.7.1.orig.tar.gz" - "osslsigncode-Backports-to-1.7.1.patch" - "dogecoin-win-unsigned.tar.gz" script: | @@ -19,13 +19,13 @@ script: | SIGDIR=${BUILD_DIR}/signature/win UNSIGNED_DIR=${BUILD_DIR}/unsigned - echo "f9a8cdb38b9c309326764ebc937cba1523a3a751a7ab05df3ecc99d18ae466c9 osslsigncode-1.7.1.tar.gz" | sha256sum -c + echo "f9a8cdb38b9c309326764ebc937cba1523a3a751a7ab05df3ecc99d18ae466c9 osslsigncode_1.7.1.orig.tar.gz" | sha256sum -c echo "a8c4e9cafba922f89de0df1f2152e7be286aba73f78505169bc351a7938dd911 osslsigncode-Backports-to-1.7.1.patch" | sha256sum -c mkdir -p ${UNSIGNED_DIR} tar -C ${UNSIGNED_DIR} -xf dogecoin-win-unsigned.tar.gz - tar xf osslsigncode-1.7.1.tar.gz + tar xf osslsigncode_1.7.1.orig.tar.gz cd osslsigncode-1.7.1 patch -p1 < ${BUILD_DIR}/osslsigncode-Backports-to-1.7.1.patch |