mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
version: only prefix VERSION.txt to version if not link-stamped
(Fix to31e4f60047
) The31e4f60047
change accidentally made it always prepend the VERSION.txt, even when it was already link-stamped properly. Updates #81 Change-Id: I6cdcff096c25d92d566ad3ac1de5771c7384daea Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
06dccea416
commit
cb87b7aa5b
@ -16,17 +16,16 @@
|
||||
// provided.
|
||||
var Long = "date.20211022"
|
||||
|
||||
func init() {
|
||||
Long = strings.TrimSpace(tailscaleroot.Version) + "-" + Long
|
||||
}
|
||||
|
||||
// Short is a short version number for this build, of the form
|
||||
// "x.y.z", or "date.yyyymmdd" if no actual version was provided.
|
||||
var Short = ""
|
||||
|
||||
func init() {
|
||||
// If it hasn't been link-stamped with -X (via build_dist.sh or similar),
|
||||
// then use the VERSION.txt file in the root and the date in the Long
|
||||
// variable above which we occasionally bump by hand.
|
||||
if Short == "" {
|
||||
// If it hasn't been link-stamped with -X:
|
||||
Long = strings.TrimSpace(tailscaleroot.Version) + "-" + Long
|
||||
Short = Long
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user