mirror of https://github.com/openssl/openssl.git
Fix invalid expression syntax
The expression had an extra '$' character which made it always evaluate to true. See https://github.com/boostsecurityio/poutine/blob/main/docs/content/en/rules/if_always_true.md. CLA: trivial Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Paul Dale <ppzgs1@gmail.com> (Merged from https://github.com/openssl/openssl/pull/24325)
This commit is contained in:
parent
1c4f968469
commit
0fff6a2cf4
|
|
@ -66,7 +66,7 @@ jobs:
|
||||||
run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4
|
run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4
|
||||||
- name: install
|
- name: install
|
||||||
# Run on 64 bit only as 32 bit is slow enough already
|
# Run on 64 bit only as 32 bit is slow enough already
|
||||||
if: $${{ matrix.platform.arch == 'win64' }}
|
if: ${{ matrix.platform.arch == 'win64' }}
|
||||||
run: |
|
run: |
|
||||||
mkdir _dest
|
mkdir _dest
|
||||||
nmake install DESTDIR=_dest
|
nmake install DESTDIR=_dest
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue