Skip to content

Commit

Permalink
fix wget param in downloader script
Browse files Browse the repository at this point in the history
  • Loading branch information
johbar committed Jan 13, 2025
1 parent 9afa611 commit e1ada26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ "main" ]

jobs:
build-on-windows-embedded:
build-embedded-on-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion pkg/pdflibwrappers/pdfium_purego/download-pdfium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ download () {
if which curl 2>&1 >/dev/null ; then
curl -sS --location "$1"
else
wget -q -o - "$1"
wget -q -O - "$1"
fi
}

Expand Down

0 comments on commit e1ada26

Please sign in to comment.