# HG changeset patch # User Paper <37962225+mrpapersonic@users.noreply.github.com> # Date 1658380967 14400 # Node ID 61fa41e1678f7e58308a7e1bad24e3ff32623492 # Parent 06d8f805e8f0587c84b29102462d965f2a8d0e83 curl to PowerShell tools, favor zip file over tar.xz diff -r 06d8f805e8f0 -r 61fa41e1678f .github/workflows/build.yml --- a/.github/workflows/build.yml Thu Jul 21 01:00:50 2022 -0400 +++ b/.github/workflows/build.yml Thu Jul 21 01:22:47 2022 -0400 @@ -17,9 +17,9 @@ - name: Setup MinGW run: | - curl -L -o mingw-get.tar.xz "https://osdn.net/dl/mingw/mingw-get-0.6.3-mingw32-pre-20170905-1-bin.tar.xz" - mkdir C:\MinGW - tar xvf mingw-get.tar.xz -C C:\MinGW + Invoke-WebRequest -OutFile mingw-get.zip "https://osdn.net/dl/mingw/mingw-get-0.6.3-mingw32-pre-20170905-1-bin.zip" -UserAgent "curl/7.55.1" + Expand-Archive -Path mingw-get.zip -DestinationPath C:\MinGW + Remove-Item -Path mingw-get.zip C:\MinGW\bin\mingw-get.exe install mingw32-base-bin shell: pwsh