GHA/windows: fix find in old-mingw-w64 curl -V step

By default it runs the Windows `find` command and fails.
Tweak the `PATH` to find the MSYS shell implementation.
This commit is contained in:
Viktor Szakats 2024-09-29 22:35:45 +02:00
parent 2c419fc14b
commit 47d604ae7e
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -353,7 +353,7 @@ jobs:
- name: 'curl version'
timeout-minutes: 1
run: |
find . -name '*.exe' -o -name '*.dll'
PATH=/usr/bin find . -name '*.exe' -o -name '*.dll'
PATH="$PWD/bld/lib:$PATH"
bld/src/curl.exe --disable --version