Skip to content

Commit

Permalink
build(go): 🏗️ always install amd64 build deps
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuar committed May 26, 2024
1 parent 9baedca commit 427a4f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/scripts/install-deps
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ case $1 in
ccpkg=(gcc)
;;
arm)
pkgarch=(armhf)
pkgarch=(armhf amd64)
ccpkg=(gcc gcc-arm-linux-gnueabihf)
;;
arm64)
pkgarch=(arm64)
pkgarch=(arm64 amd64)
ccpkg=(gcc gcc-aarch64-linux-gnu)
;;
all)
pkgarch=(amd64 armhf arm64)
pkgarch=(armhf arm64 amd64)
ccpkg=(gcc gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu)
;;
*)
Expand Down

0 comments on commit 427a4f2

Please sign in to comment.