Fix invalid expression syntax
authorFlorian Greinacher <florian@greinacher.de>
Fri, 3 May 2024 08:46:47 +0000 (10:46 +0200)
committerTomas Mraz <tomas@openssl.org>
Tue, 7 May 2024 07:29:51 +0000 (09:29 +0200)
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)

.github/workflows/windows.yml

index 1df44c4f0094b471e2806e8e80dddb4335867b77..c24e7f894d1e051520d1bdb84e8f1f4228e5d341 100644 (file)
@@ -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