diff options
| author | willyk <[email protected]> | 2019-12-05 13:00:34 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-12-05 13:00:34 -0800 |
| commit | c966ff14c77870378847b9e6063b9671739ddc1f (patch) | |
| tree | 0fa0be0f283bbacb3dca8e5deac2b4614d5e4cc3 | |
| parent | Merge #17674: tests: Add initialization order fiasco detection in Travis (diff) | |
| download | discoin-c966ff14c77870378847b9e6063b9671739ddc1f.tar.xz discoin-c966ff14c77870378847b9e6063b9671739ddc1f.zip | |
gitian: fixed SC2001 regex
the `-` is not a special symbol and should not have `%` in front of it.
| -rw-r--r-- | contrib/gitian-descriptors/gitian-win-signer.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gitian-descriptors/gitian-win-signer.yml b/contrib/gitian-descriptors/gitian-win-signer.yml index 6a52db1f9..70b7bb111 100644 --- a/contrib/gitian-descriptors/gitian-win-signer.yml +++ b/contrib/gitian-descriptors/gitian-win-signer.yml @@ -36,6 +36,6 @@ script: | make find ${UNSIGNED_DIR} -name "*-unsigned.exe" | while read i; do INFILE="$(basename "${i}")" - OUTFILE="${INFILE/%-unsigned}" + OUTFILE="${INFILE/-unsigned}" ./osslsigncode attach-signature -in "${i}" -out "${OUTDIR}/${OUTFILE}" -sigin "${SIGDIR}/${INFILE}.pem" done |