Skip to content

Commit

Permalink
Added support to build ARM32 binary
Browse files Browse the repository at this point in the history
  • Loading branch information
kopwei committed Sep 8, 2019
1 parent 4e31373 commit bedda10
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 bedda10

Please sign in to comment.