Skip to content

Commit

Permalink
Merge pull request #7934 from kozlovsky/fix/gui_tests_github_action_r…
Browse files Browse the repository at this point in the history
…eplace_wget_with_curl

Fix GUI test GitHub action on Windows by replacing wget with curl
  • Loading branch information
kozlovsky authored Mar 18, 2024
2 parents b64ec7b + f5991f9 commit acfcd96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/windows_dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
RELEASE_FOLDER: .\libsodium\x64\Release
shell: cmd
run: |
C:\msys64\usr\bin\wget.exe -q https://download.libsodium.org/libsodium/releases/libsodium-${{inputs.libsodium-version}}-msvc.zip
curl -L https://download.libsodium.org/libsodium/releases/libsodium-${{inputs.libsodium-version}}-msvc.zip -o libsodium-${{inputs.libsodium-version}}-msvc.zip
7z x libsodium-${{inputs.libsodium-version}}-msvc.zip
dir %RELEASE_FOLDER% /ad /b /o-n > latest_release_file
set /p latest_release= < latest_release_file
Expand Down

0 comments on commit acfcd96

Please sign in to comment.