From 154f1906924900c948ea8759c711ba43cd236656 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0tefan=20Baebler?= Date: Fri, 21 Jul 2023 09:38:18 +0200 Subject: [PATCH] Remove obsolete build flag Go 1.20 release notes https://go.dev/doc/go1.20#go-command: > The go build and go test commands no longer accept the -i flag, which has been deprecated since Go 1.16. https://go.dev/doc/go1.16#go-command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 30e769e..3032fd8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ GO_LDFLAGS := -X $(shell go list ./).GitCommit=$(shell git rev-parse --short HEA default: build bin/docker-machine-driver-parallels: - go build -i -ldflags "$(GO_LDFLAGS)" \ + go build -ldflags "$(GO_LDFLAGS)" \ -o ./bin/docker-machine-driver-parallels ./bin build: clean bin/docker-machine-driver-parallels