From 47d604ae7e96b2e4487f4171c53ddb4392c7813d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 29 Sep 2024 22:35:45 +0200 Subject: [PATCH] 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. --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3