Skip to content

Commit e0c8f5f

Browse files
fgreinachert8m
authored andcommitted
windows.yml: 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> Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> MergeDate: Fri Feb 13 14:40:57 2026 (Merged from #29806) (cherry picked from commit 1389b94)
1 parent 2b0dbbd commit e0c8f5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4
5454
- name: install
5555
# Run on 64 bit only as 32 bit is slow enough already
56-
if: $${{ matrix.platform.arch == 'win64' }}
56+
if: ${{ matrix.platform.arch == 'win64' }}
5757
run: |
5858
mkdir _dest
5959
nmake install DESTDIR=_dest

0 commit comments

Comments
 (0)