-
Notifications
You must be signed in to change notification settings - Fork 605
Closed
Labels
applicationadds or improves an application labeladds or improves an application labelgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededuniversaladd support for arm/intel specific downloads or installersadd support for arm/intel specific downloads or installers
Milestone
Description
Of course right after fixing #831, Keybase went and released their arm64 version and changed the web page for it. As such, I believe this will fix it and ensure the native arm64 version is installed where appropriate:
keybase)
name="Keybase"
type="dmg"
if [[ $(arch) == arm64 ]]; then
downloadURL=$(curl -s https://keybase.io/docs/the_app/install_macos | grep data-target | cut -d '"' -f2 | grep arm64 )
elif [[ $(arch) == i386 ]]; then
downloadURL=$(curl -s https://keybase.io/docs/the_app/install_macos | grep data-target | cut -d '"' -f2 | grep -v arm64 )
fi
expectedTeamID="99229SGT5K"
;;
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
applicationadds or improves an application labeladds or improves an application labelgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededuniversaladd support for arm/intel specific downloads or installersadd support for arm/intel specific downloads or installers