From 5523d5597d9a860aede2c8cb64b4289a927a46e6 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Wed, 31 Jan 2024 18:19:22 -0500 Subject: [PATCH] CI: Replace -o with -OutFile, works around Invoke-WebRequest regression --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1cc1d393..5339fd01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -125,7 +125,7 @@ jobs: - if: ${{ steps.cache-windows-sdl.outputs.cache-hit != 'true' }} name: Download SDL if not cached run: | - Invoke-WebRequest "https://github.com/libsdl-org/SDL/releases/download/release-$env:SDL_VERSION/SDL2-devel-$env:SDL_VERSION-VC.zip" -o C:\SDL.zip + Invoke-WebRequest "https://github.com/libsdl-org/SDL/releases/download/release-$env:SDL_VERSION/SDL2-devel-$env:SDL_VERSION-VC.zip" -OutFile C:\SDL.zip Expand-Archive C:\SDL.zip -DestinationPath C:\ - name: Cache build folder for this CMakeLists.txt