From 11bb681ce8f3c98ce17d1b07629f4b679af01ed3 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 18 Aug 2025 11:18:09 +0200 Subject: [PATCH] GHA/windows: tidy up running find in two build steps Cherry-picked from #18301 --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index f6d029ddb0..796534c014 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -551,7 +551,7 @@ jobs: - name: 'curl version' timeout-minutes: 1 run: | - PATH=/usr/bin find . \( -name '*.exe' -o -name '*.dll' -o -name '*.a' \) -exec file '{}' \; + /usr/bin/find . \( -name '*.exe' -o -name '*.dll' -o -name '*.a' \) -exec file '{}' \; PATH="$PWD/bld/lib:$PATH" bld/src/curl.exe --disable --version @@ -871,7 +871,7 @@ jobs: - name: 'curl version' timeout-minutes: 1 run: | - PATH=/usr/bin find . \( -name '*.exe' -o -name '*.dll' -o -name '*.lib' -o -name '*.pdb' \) -exec file '{}' \; + /usr/bin/find . \( -name '*.exe' -o -name '*.dll' -o -name '*.lib' -o -name '*.pdb' \) -exec file '{}' \; if [ "${MATRIX_PLAT}" != 'uwp' ]; then # Missing: ucrtbased.dll, VCRUNTIME140D.dll, VCRUNTIME140D_APP.dll PATH="$PWD/bld/lib/${MATRIX_TYPE}:$PATH" "bld/src/${MATRIX_TYPE}/curl.exe" --disable --version -- 2.47.3