From: Viktor Szakats Date: Mon, 18 Aug 2025 09:18:09 +0000 (+0200) Subject: GHA/windows: tidy up running find in two build steps X-Git-Tag: curl-8_16_0~164 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=11bb681ce8f3c98ce17d1b07629f4b679af01ed3;p=thirdparty%2Fcurl.git GHA/windows: tidy up running find in two build steps Cherry-picked from #18301 --- 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