Skip to content

Commit

Permalink
Merge pull request #842 from lightninglabs/makefile
Browse files Browse the repository at this point in the history
Makefile optimizations
  • Loading branch information
guggero authored Mar 19, 2024
2 parents f5ef93e + acce518 commit ed1ec9b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ MIGRATE_BIN := $(GO_BIN)/migrate
# VERSION_GO_FILE is the golang file which defines the current project version.
VERSION_GO_FILE := "version.go"

COMMIT := $(shell git describe --tags --dirty)
COMMIT := $(shell git describe --tags --dirty --always)

GOBUILD := GOEXPERIMENT=loopvar GO111MODULE=on go build -v
GOINSTALL := GOEXPERIMENT=loopvar GO111MODULE=on go install -v
Expand All @@ -35,8 +35,6 @@ include make/testing_flags.mk
include make/release_flags.mk
include make/fuzz_flags.mk

DEV_TAGS := $(if ${tags},$(DEV_TAGS) ${tags},$(DEV_TAGS))

# We only return the part inside the double quote here to avoid escape issues
# when calling the external release script. The second parameter can be used to
# add additional ldflags if needed (currently only used for the release).
Expand Down

0 comments on commit ed1ec9b

Please sign in to comment.