Skip to content

Commit

Permalink
Merge pull request #61 from kopwei/arm_support
Browse files Browse the repository at this point in the history
Added support to build ARM32 binary
  • Loading branch information
c-bata authored Sep 9, 2019
2 parents 4e31373 + bedda10 commit eed9b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ cross: main.go ## Build binaries for cross platform.
zip pkg/kube-prompt_$(VERSION)_darwin_$${arch}.zip kube-prompt; \
done;
@# linux
@for arch in "amd64" "386" "arm64"; do \
@for arch in "amd64" "386" "arm64" "arm"; do \
GOOS=linux GOARCH=$${arch} make build; \
zip pkg/kube-prompt_$(VERSION)_linux_$${arch}.zip kube-prompt; \
done;
Expand Down

0 comments on commit eed9b10

Please sign in to comment.