Skip to content

Commit

Permalink
improve create_installer.sh script of mac installer
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpalide committed Jun 29, 2024
1 parent 5530939 commit 0310b57
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 https://api.github.com/repos/skycoin/skywire/releases | jq '.[0].assets[] | select(.name|match("darwin-'${go_arch}'.tar.gz")) | .browser_download_url')
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')
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 0310b57

Please sign in to comment.