Skip to content

Commit

Permalink
remove date from fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
mastercactapus committed Jan 26, 2024
1 parent cbe953a commit e3d6fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.binaries.mk
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ endif

GIT_COMMIT:=$(shell git rev-parse HEAD || echo '?')
GIT_TREE:=$(shell git diff-index --quiet HEAD -- && echo clean || echo dirty)
GIT_VERSION:=$(shell git describe --tags --dirty --match 'v*' || echo dev-$(shell date -u +"%Y%m%d%H%M%S"))
GIT_VERSION:=$(shell git describe --tags --dirty --match 'v*' || echo dev)
BUILD_DATE:=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
BUILD_FLAGS=

Expand Down
2 changes: 1 addition & 1 deletion devtools/genmake/template.mk
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ endif

GIT_COMMIT:=$(shell git rev-parse HEAD || echo '?')
GIT_TREE:=$(shell git diff-index --quiet HEAD -- && echo clean || echo dirty)
GIT_VERSION:=$(shell git describe --tags --dirty --match 'v*' || echo dev-$(shell date -u +"%Y%m%d%H%M%S"))
GIT_VERSION:=$(shell git describe --tags --dirty --match 'v*' || echo dev)
BUILD_DATE:=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
BUILD_FLAGS=

Expand Down

0 comments on commit e3d6fd7

Please sign in to comment.