From e7de9a318dcbca6bf6caa2a10d4eb3bc671731fb Mon Sep 17 00:00:00 2001 From: Rob Mills Date: Sat, 13 Feb 2021 00:38:22 -0600 Subject: [PATCH] Add build for linux arm (#23) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c0af1b3..47e9035 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ VERSION ?= latest GITHUB_USERNAME := int128 GITHUB_REPONAME := slack-docker LDFLAGS := -X main.version=$(VERSION) -OSARCH := linux_arm64 linux_amd64 darwin_amd64 windows_amd64 +OSARCH := linux_arm64 linux_amd64 darwin_amd64 windows_amd64 linux_arm $(TARGET): go build -o $@ -ldflags "$(LDFLAGS)"