mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-13 13:24:42 +02:00
gitian: fixed SC2001 regex
the `-` is not a special symbol and should not have `%` in front of it.
This commit is contained in:
@ -36,6 +36,6 @@ script: |
|
|||||||
make
|
make
|
||||||
find ${UNSIGNED_DIR} -name "*-unsigned.exe" | while read i; do
|
find ${UNSIGNED_DIR} -name "*-unsigned.exe" | while read i; do
|
||||||
INFILE="$(basename "${i}")"
|
INFILE="$(basename "${i}")"
|
||||||
OUTFILE="${INFILE/%-unsigned}"
|
OUTFILE="${INFILE/-unsigned}"
|
||||||
./osslsigncode attach-signature -in "${i}" -out "${OUTDIR}/${OUTFILE}" -sigin "${SIGDIR}/${INFILE}.pem"
|
./osslsigncode attach-signature -in "${i}" -out "${OUTDIR}/${OUTFILE}" -sigin "${SIGDIR}/${INFILE}.pem"
|
||||||
done
|
done
|
||||||
|
Reference in New Issue
Block a user