mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
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
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
@ -66,7 +66,7 @@ jobs:
|
||||
run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4
|
||||
- name: install
|
||||
# Run on 64 bit only as 32 bit is slow enough already
|
||||
if: $${{ matrix.platform.arch == 'win64' }}
|
||||
if: ${{ matrix.platform.arch == 'win64' }}
|
||||
run: |
|
||||
mkdir _dest
|
||||
nmake install DESTDIR=_dest
|
||||
|
Loading…
Reference in New Issue
Block a user