From: Viktor Szakats Date: Sun, 29 Sep 2024 20:35:45 +0000 (+0200) Subject: GHA/windows: fix `find` in old-mingw-w64 `curl -V` step X-Git-Tag: curl-8_11_0~297 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47d604ae7e96b2e4487f4171c53ddb4392c7813d;p=thirdparty%2Fcurl.git 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. --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2a959868da..046e822c4f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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