fix SDL download

This commit is contained in:
Christopher A. Mosher 2022-11-02 13:34:02 -04:00
parent 767d818c27
commit 7fc1d3e795
1 changed files with 2 additions and 7 deletions

View File

@ -87,15 +87,10 @@ jobs:
- uses: "actions/checkout@v3"
- name: "Download SDL2 package"
run: >-
Invoke-WebRequest
-Uri "https://github.com/libsdl-org/SDL/releases/download/release-2.24.2/SDL2-devel-2.24.2-VC.zip"
-OutFile "C:/Program Files/SDL2-devel-VC.zip"
run: 'Invoke-WebRequest -Uri "https://github.com/libsdl-org/SDL/releases/download/release-2.24.2/SDL2-devel-2.24.2-VC.zip" -OutFile "C:/Program Files/SDL2-devel-VC.zip"'
- name: "Install SDL2"
run: >-
Expand-Archive
-LiteralPath "C:/Program Files/SDL2-devel-VC.zip"
run: 'Expand-Archive -LiteralPath "C:/Program Files/SDL2-devel-VC.zip"'
- name: "Build"
shell: "bash"