Skip to content

Commit

Permalink
fix(Makefile): inject variables in install step
Browse files Browse the repository at this point in the history
  • Loading branch information
tzdybal committed Nov 23, 2021
1 parent 21f1bc9 commit b4a50da
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 @@ -20,7 +20,7 @@ build:
## install: Builds and installs the celestia-node binary into the GOBIN directory.
install:
@echo "--> Installing Celestia"
@go install ./cmd/celestia
@go install -ldflags "-X 'main.buildTime=$(BUILD_DATE)' -X 'main.lastCommit=$(LAST_COMMIT)' -X 'main.semanticVersion=$(CELESTIA_VERSION)'" ./cmd/celestia
.PHONY: install

## fmt: Formats only *.go (excluding *.pb.go *pb_test.go). Runs `gofmt & goimports` internally.
Expand Down

0 comments on commit b4a50da

Please sign in to comment.