Merge pull request #73 from harche/golang_fix

Install the right golang binaries for ppc64le
This commit is contained in:
Graham Whaley
2018-03-23 09:35:49 +00:00
committed by GitHub

View File

@@ -93,6 +93,10 @@ generate_dockerfile() {
dir="$1"
case "$(arch)" in
"ppc64le")
goarch=ppc64le
;;
"aarch64")
goarch=arm64
;;