mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
make: filter git describe to only match release tags
Add --match 'v*' to the VERSION_TAG git describe command to exclude non-version tags like perms/*, litrpc/*, and autopilotserverrpc/*. These tags contain forward slashes which cause the release script to fail when constructing output filenames.
This commit is contained in:
parent
c64b47eec6
commit
d16c0837bc
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
include make/compile_flags.mk
|
||||
|
||||
# Create a globally-consistent, build-input identifier.
|
||||
VERSION_TAG = $(shell git describe --abbrev=40 --broken --tags --always)
|
||||
VERSION_TAG = $(shell git describe --abbrev=40 --broken --tags --always --match 'v*')
|
||||
VERSION_CHECK = @$(call print, "Building master with date version tag")
|
||||
|
||||
DOCKER_RELEASE_HELPER = docker run \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue