Skip to content

Commit

Permalink
fixed wget issue (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
raianand authored Mar 10, 2024
1 parent 6e4b24b commit 541cd6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async function run() {
core.info('Error getting referrer')
}
const primaryDownloadExitCode = await exec(
`wget --quiet --header 'Referrer: ${referrer}' https://api-do-blr.koalalab.com/bolt/package/${releaseVersion}/${filename}`
`wget --quiet --header "Referrer: ${referrer}" https://api-do-blr.koalalab.com/bolt/package/${releaseVersion}/${filename}`
)
if (primaryDownloadExitCode !== 0) {
core.info('Primary download failed, trying backup...')
Expand Down

0 comments on commit 541cd6f

Please sign in to comment.