We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 999a9a5 commit 71949a9Copy full SHA for 71949a9
contrib/gitian-descriptors/gitian-win.yml
@@ -22,7 +22,6 @@ packages:
22
- "zip"
23
- "ca-certificates"
24
- "python3"
25
-- "rename"
26
remotes:
27
- "url": "https://github.com/bitcoin/bitcoin.git"
28
"dir": "bitcoin"
@@ -154,8 +153,10 @@ script: |
154
153
make ${MAKEOPTS} -C src check-security
155
make deploy
156
make install DESTDIR=${INSTALLPATH}
157
- rename 's/-setup\.exe$/-setup-unsigned.exe/' *-setup.exe
158
- cp -f bitcoin-*setup*.exe $OUTDIR/
+ (
+ SETUP_EXE="$(basename "$(echo ./*-setup.exe)")"
+ cp -f "$SETUP_EXE" "${OUTDIR}/${SETUP_EXE/%-setup.exe/-setup-unsigned.exe}"
159
+ )
160
cd installed
161
mv ${DISTNAME}/bin/*.dll ${DISTNAME}/lib/
162
find . -name "lib*.la" -delete
0 commit comments