Skip to content

Commit

Permalink
This should restore "make chainlink" to previous behavior (#11886)
Browse files Browse the repository at this point in the history
Previously, running "make chainlink" and similar commands used to be able to rebuild the chainlink executable.
That stopped working recently, after some dependency changes. This will allow it to rebuild without needing
to explicitly run "rm chainlink" each time you modify the source code or change branches.
  • Loading branch information
reductionista authored Jan 25, 2024
1 parent 23b612b commit e9f138c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,15 @@ godoc: ## Install and run godoc
install-chainlink: operator-ui ## Install the chainlink binary.
go install $(GOFLAGS) .

.PHONY: chainlink
chainlink: ## Build the chainlink binary.
go build $(GOFLAGS) .

.PHONY: chainlink-dev
chainlink-dev: ## Build a dev build of chainlink binary.
go build -tags dev $(GOFLAGS) .

.PHONY: chainlink-test
chainlink-test: ## Build a test build of chainlink binary.
go build $(GOFLAGS) .

Expand Down

0 comments on commit e9f138c

Please sign in to comment.