Skip to content

Commit

Permalink
removes -i flag from go build as its deprecated (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyagg authored Nov 26, 2020
1 parent 9f556f6 commit af177e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ build-info:

.PHONY: go-build-api ## Build the binary file for API server
go-build-metro:
@CGO_ENABLED=0 GOOS=$(UNAME_OS) GOARCH=$(UNAME_ARCH) go build -i -v -o $(METRO_OUT) $(METRO_MAIN_FILE)
@CGO_ENABLED=0 GOOS=$(UNAME_OS) GOARCH=$(UNAME_ARCH) go build -v -o $(METRO_OUT) $(METRO_MAIN_FILE)

.PHONY: clean ## Remove previous builds, protobuf files, and proto compiled code
clean:
Expand Down

0 comments on commit af177e4

Please sign in to comment.