remove -i flag on build

This commit is contained in:
A.Unger
2021-10-19 14:35:37 +02:00
parent 75a4015954
commit ccfd48532e

View File

@@ -11,11 +11,7 @@ else
UNAME := $(shell uname -s)
endif
ifeq ($(UNAME), Darwin)
GOBUILD ?= go build -i
else
GOBUILD ?= go build
endif
GOBUILD ?= go build
SOURCES ?= $(shell find . -name "*.go" -type f -not -path "./node_modules/*")