]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
GHA/windows: dl-mingw `PATH` follow-up
authorViktor Szakats <commit@vsz.me>
Mon, 24 Mar 2025 14:22:52 +0000 (15:22 +0100)
committerViktor Szakats <commit@vsz.me>
Mon, 24 Mar 2025 14:34:00 +0000 (15:34 +0100)
Follow-up to 468bfc26183cc4e65b2494acf82d256571cb8178 #16813

Closes #16817

.github/workflows/windows.yml

index aff5c3b306c48a562a62bdade006af4f9401044c..b2dbd60fafd06d2a2501a14266e559d5cd6b8233 100644 (file)
@@ -524,7 +524,7 @@ jobs:
         if: ${{ matrix.tflags != 'skipall' && matrix.tflags != 'skiprun' }}
         timeout-minutes: 10
         run: |
-          PATH="$(cygpath "${USERPROFILE}")/my-cache/${{ matrix.dir }}/bin:$PATH"
+          PATH="/d/my-cache/${{ matrix.dir }}/bin:$PATH"
           export TFLAGS='-j8 ${{ matrix.tflags }}'
           TFLAGS+=' !498'  # 'Reject too large HTTP response headers on endless redirects' HTTP, HTTP GET (runtests detecting result code 2009 instead of 56 returned by curl)
           if [ -x "$(cygpath "${SYSTEMROOT}/System32/curl.exe")" ]; then
@@ -536,7 +536,7 @@ jobs:
       - name: 'build examples'
         timeout-minutes: 5
         run: |
-          PATH="$(cygpath "${USERPROFILE}")/my-cache/${{ matrix.dir }}/bin:$PATH"
+          PATH="/d/my-cache/${{ matrix.dir }}/bin:$PATH"
           cmake --build bld --target curl-examples
 
   linux-cross-mingw-w64: