From 991b6412488aee57584dc72479642f92659e03ba Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Wed, 22 Jan 2025 15:18:28 +0100 Subject: [PATCH] Update Makefile --- tests/ocwrapper/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/ocwrapper/Makefile b/tests/ocwrapper/Makefile index 0613f5a7f..8f8a6f133 100644 --- a/tests/ocwrapper/Makefile +++ b/tests/ocwrapper/Makefile @@ -1,3 +1,6 @@ .PHONY: build + +GOARCH := $(shell go env GOARCH) + build: - env GOOS=linux GOARCH=arm64 go build -o bin/ocwrapper \ No newline at end of file + env GOOS=linux GOARCH=$(GOARCH) go build -o bin/ocwrapper