Skip to content

Commit

Permalink
chore: Remove -i parameter in go install
Browse files Browse the repository at this point in the history
Closes: vmware#2608

Recent go versions throw go install: -i flag is deprecated

Signed-off-by: Michael Gasch <[email protected]>
  • Loading branch information
Michael Gasch committed Oct 1, 2021
1 parent ab29dd6 commit 05adcc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion program.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $(PROGRAM):
CGO_ENABLED=0 go build -a $(BUILD_ARGS) -o $@

install:
CGO_ENABLED=0 go install -i -v $(BUILD_ARGS)
CGO_ENABLED=0 go install -v $(BUILD_ARGS)

ifneq (,$(strip $(BUILD_OS)))
ifneq (,$(strip $(BUILD_ARCH)))
Expand Down

0 comments on commit 05adcc9

Please sign in to comment.