Skip to content

Commit

Permalink
Merge pull request #851 from lightninglabs/fix-make-build-itest
Browse files Browse the repository at this point in the history
makefile: fix `build-itest` command failure when `vendor` dir present
  • Loading branch information
ffranr authored Mar 21, 2024
2 parents 1656733 + 767613f commit 98634ca
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 @@ -96,7 +96,7 @@ build-itest:
CGO_ENABLED=0 $(GOBUILD) -tags="integration" -o itest/btcd-itest $(BTCD_PKG)

@$(call print, "Building itest lnd.")
CGO_ENABLED=0 $(GOBUILD) -tags="$(ITEST_TAGS)" -o itest/lnd-itest $(DEV_LDFLAGS) $(LND_PKG)/cmd/lnd
CGO_ENABLED=0 $(GOBUILD) -mod=mod -tags="$(ITEST_TAGS)" -o itest/lnd-itest $(DEV_LDFLAGS) $(LND_PKG)/cmd/lnd

build-loadtest:
CGO_ENABLED=0 $(GOTEST) -c -tags="$(LOADTEST_TAGS)" -o loadtest $(PKG)/itest/loadtest
Expand Down

0 comments on commit 98634ca

Please sign in to comment.