TUN-5129: Remove `-dev` suffix when computing version and Git has uncommitted changes
When building the docker image, this `-dev` suffix is being added to the cloudflared binary version. The reason must be that there's some file, which is tracked by git, and that is modified during that build. It's not clear which file is it. But, at the same time, it's not clear what advantage this `-dev` suffix is bringing. So we're simply removing it so that we generate proper versions (so that our tracking/observability can correctly aggregate these values).
This commit is contained in:
parent
e35f744b36
commit
59bbd51065
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
VERSION := $(shell git describe --tags --always --dirty="-dev" --match "[0-9][0-9][0-9][0-9].*.*")
|
VERSION := $(shell git describe --tags --always --match "[0-9][0-9][0-9][0-9].*.*")
|
||||||
MSI_VERSION := $(shell git tag -l --sort=v:refname | grep "w" | tail -1 | cut -c2-)
|
MSI_VERSION := $(shell git tag -l --sort=v:refname | grep "w" | tail -1 | cut -c2-)
|
||||||
#MSI_VERSION expects the format of the tag to be: (wX.X.X). Starts with the w character to not break cfsetup.
|
#MSI_VERSION expects the format of the tag to be: (wX.X.X). Starts with the w character to not break cfsetup.
|
||||||
#e.g. w3.0.1 or w4.2.10. It trims off the w character when creating the MSI.
|
#e.g. w3.0.1 or w4.2.10. It trims off the w character when creating the MSI.
|
||||||
|
|
Loading…
Reference in New Issue