Skip to content

Commit 481b11f

Browse files
authored
Remove deprecated build parameter ´-i
The build for docker-machine-kvm fails because go 1.20 and later versions have removed the deprecated -i parameter. The issue can be found in the file cmd/docker-machine-driver-kvm/Makefile and the parameter has been deprecated since go 1.10. Please consider updating the Makefile to accommodate the changes in go 1.20+ and remove the deprecated -i parameter to avoid this issue in future builds.
1 parent 9638bbc commit 481b11f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
default: build
22

33
build:
4-
GOGC=off go build -i -o docker-machine-driver-kvm
4+
GOGC=off go build -o docker-machine-driver-kvm

0 commit comments

Comments
 (0)