From: Florian Greinacher Date: Fri, 3 May 2024 08:46:47 +0000 (+0200) Subject: Fix invalid expression syntax X-Git-Tag: openssl-3.4.0-alpha1~590 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0fff6a2cf4c00bc7ead235099af350db61413bd2;p=thirdparty%2Fopenssl.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 Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/24325) --- 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