summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorFlorian Greinacher <florian@greinacher.de>2024-05-03 10:46:47 +0200
committerTomas Mraz <tomas@openssl.org>2024-05-07 09:29:51 +0200
commit0fff6a2cf4c00bc7ead235099af350db61413bd2 (patch)
tree8072865a7be73c6e3f3ffec94762032d11ae81ec /.github
parent1c4f9684696bad3a602b388a414f2051f0365b3d (diff)
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)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 1df44c4f00..c24e7f894d 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -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