Fix matching goarch
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
IamTheFij 2024-11-02 20:05:56 -07:00
parent 106ef10c4a
commit 42d1f80105

View File

@ -4,8 +4,7 @@ GOFILES = *.go
# Multi-arch targets are generated from this
TARGET_ALIAS = $(APP_NAME)-linux-amd64 $(APP_NAME)-linux-arm $(APP_NAME)-linux-arm64
TARGETS = $(addprefix dist/,$(TARGET_ALIAS))
.QUOTE = "
CURRENT_GOARCH = $(shell go env | awk -F "=" '/GOARCH/ { gsub(/$(.QUOTE)/,"", $$2); print $$2}')
CURRENT_GOARCH = $(shell go env GOARCH)
# Default make target will run tests
.DEFAULT_GOAL = test