Skip to content

Commit

Permalink
Merge pull request #1851 from mrpalide/fix/fix-bearer-token-rate-limits
Browse files Browse the repository at this point in the history
fix bearer token issue
  • Loading branch information
mrpalide authored Jun 29, 2024
2 parents 9775399 + ed7a67c commit 6849006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mac_installer/create_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function build_installer() {
fi

# fetch skywire binaries from last release
download_url=$(eval curl --url https://api.github.com/repos/skycoin/skywire/releases --header 'authorization: Bearer $GITHUB_TOKEN' | jq '.[0].assets[] | select(.name|match("darwin-'${go_arch}'.tar.gz")) | .browser_download_url')
download_url=$(eval "curl --header 'Authorization: Bearer '$GITHUB_TOKEN'' https://api.github.com/repos/skycoin/skywire/releases" | jq '.[0].assets[] | select(.name|match("darwin-'${go_arch}'.tar.gz")) | .browser_download_url')
wget ${download_url:1:$((${#download_url} - 2))} -O - | tar -xz

if [ -d ${installer_build_dir}/binaries/Skywire.app ]; then
Expand Down

0 comments on commit 6849006

Please sign in to comment.