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:
parent
2c419fc14b
commit
47d604ae7e
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
@ -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
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user