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
commit ee4a91a60a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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