mirror of
https://github.com/octoleo/restic.git
synced 2025-02-02 03:48:25 +00:00
Detect a devel version correctly in LDFlags()
This commit is contained in:
parent
c7f5ac22eb
commit
d2834b61fb
2
build.go
2
build.go
@ -265,7 +265,7 @@ func (cs Constants) LDFlags() string {
|
||||
l := make([]string, 0, len(cs))
|
||||
|
||||
v := runtime.Version()
|
||||
if strings.HasPrefix(v, "go1.5") || strings.HasPrefix(v, "go1.6") || strings.HasPrefix(v, "go1.7") {
|
||||
if strings.HasPrefix(v, "devel") || strings.HasPrefix(v, "go1.5") || strings.HasPrefix(v, "go1.6") || strings.HasPrefix(v, "go1.7") {
|
||||
for k, v := range cs {
|
||||
l = append(l, fmt.Sprintf(`-X "%s=%s"`, k, v))
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user