mirror of
https://github.com/octoleo/syncthing.git
synced 2025-04-03 08:11:50 +00:00
Correct the branch finding logic
This commit is contained in:
parent
8418fae82b
commit
28d74f5d9b
31
build.go
31
build.go
@ -509,22 +509,41 @@ func getBranchSuffix() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
branches := bytes.Split(bs, []byte{'\n'})
|
branches := strings.Split(string(bs), "\n")
|
||||||
if len(branches) == 0 {
|
if len(branches) == 0 {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
// "git branch" returns the current branch with an asterisk and space in
|
branch := ""
|
||||||
// "front of it, otherwise just spaces. Remove all that stuff.
|
for i, candidate := range branches {
|
||||||
branch := bytes.TrimLeft(branches[0], " \t*")
|
if strings.HasPrefix(candidate, "*") {
|
||||||
|
// This is the current branch. Select it!
|
||||||
|
branch = strings.TrimLeft(candidate, " \t*")
|
||||||
|
break
|
||||||
|
} else if i == 0 {
|
||||||
|
// Otherwise the first branch in the list will do.
|
||||||
|
branch = strings.TrimSpace(branch)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if branch == "" {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
// The branch name may be on the form "remotes/origin/foo" from which we
|
// The branch name may be on the form "remotes/origin/foo" from which we
|
||||||
// just want "foo".
|
// just want "foo".
|
||||||
parts := bytes.Split(branch, []byte{'/'})
|
parts := strings.Split(branch, "/")
|
||||||
if len(parts) == 0 || len(parts[len(parts)-1]) == 0 {
|
if len(parts) == 0 || len(parts[len(parts)-1]) == 0 {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
return "-" + string(parts[len(parts)-1])
|
|
||||||
|
branch = string(parts[len(parts)-1])
|
||||||
|
if branch == "master" {
|
||||||
|
// master builds are the default.
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
return "-" + branch
|
||||||
}
|
}
|
||||||
|
|
||||||
func buildStamp() int64 {
|
func buildStamp() int64 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user