Skip to content

Commit

Permalink
fixed binary case for darwin/arm64 in godownloader (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
neel-astro authored May 26, 2022
1 parent d43c8e4 commit afb3b95
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions godownloader.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ get_binaries() {
linux/amd64) BINARIES="astro" ;;
windows/386) BINARIES="astro" ;;
windows/amd64) BINARIES="astro" ;;
darwin/arm64) ;;
linux/arm64)
linux/arm64|darwin/arm64)
# MANUALLY ADDED LOGIC: darwin/arm64 only available from 0.27.2 release onwards
if version_gte "0.27.2" $VERSION; then
BINARIES="astro"
Expand Down

0 comments on commit afb3b95

Please sign in to comment.