Skip to content

Commit

Permalink
version: only prefix VERSION.txt to version if not link-stamped
Browse files Browse the repository at this point in the history
(Fix to 31e4f60)

The 31e4f60 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>
  • Loading branch information
bradfitz committed Oct 29, 2021
1 parent 06dccea commit cb87b7a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions version/version.go
Expand Up @@ -16,17 +16,16 @@ import (
// 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
}
}
Expand Down

0 comments on commit cb87b7a

Please sign in to comment.