From 0fff6a2cf4c00bc7ead235099af350db61413bd2 Mon Sep 17 00:00:00 2001 From: Florian Greinacher Date: Fri, 3 May 2024 10:46:47 +0200 Subject: [PATCH] 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 Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/24325) --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 1df44c4f009..c24e7f894d1 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 -- 2.47.3