diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-11-07 14:37:56 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-11-13 18:05:26 +0200 |
commit | fe0ff569ea6c353f88609c0f5f9b6fa80ff74f15 (patch) | |
tree | 53ed10068a39ef9a8423811ea75bdb8d4de3d0b3 /contrib/windeploy/detached-sig-create.sh | |
parent | 9a1ad7bc0dd8a0769738ca4dffbeb8d55438b0dc (diff) |
test: Enable SC2046 shellcheck rule
Diffstat (limited to 'contrib/windeploy/detached-sig-create.sh')
-rwxr-xr-x | contrib/windeploy/detached-sig-create.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/windeploy/detached-sig-create.sh b/contrib/windeploy/detached-sig-create.sh index 29802e622e..fb5cb4a4d9 100755 --- a/contrib/windeploy/detached-sig-create.sh +++ b/contrib/windeploy/detached-sig-create.sh @@ -23,6 +23,7 @@ TIMESERVER=http://timestamp.comodoca.com CERTFILE="win-codesign.cert" mkdir -p "${OUTSUBDIR}" +# shellcheck disable=SC2046 basename -a $(ls -1 "${SRCDIR}"/*-unsigned.exe) | while read UNSIGNED; do echo Signing "${UNSIGNED}" "${OSSLSIGNCODE}" sign -certs "${CERTFILE}" -t "${TIMESERVER}" -h sha256 -in "${SRCDIR}/${UNSIGNED}" -out "${WORKDIR}/${UNSIGNED}" "$@" |