Skip to content

Commit

Permalink
馃┕ Fix install script (#362)
Browse files Browse the repository at this point in the history
### Summary

Fix #361
  • Loading branch information
fracek committed Apr 11, 2024
2 parents a822806 + 56a027f commit 248d16c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ main() {

local _release_tag
_release_tag=$(
curl -s "https://api.github.com/repos/${APIBARA_REPO}/releases" \
curl -s "https://api.github.com/repos/${APIBARA_REPO}/releases?per_page=100" \
| jq -r '.[] | select((.prerelease==false) and (.tag_name | startswith("cli"))) | .tag_name' \
| head -n 1
)
Expand Down

0 comments on commit 248d16c

Please sign in to comment.