bug fix release

This commit is contained in:
Lunny Xiao 2017-01-09 23:51:21 +08:00 committed by Kim "BKC" Carlbäcker
parent b316b2e740
commit 7209917fd7
5 changed files with 14 additions and 9 deletions

2
vendor/code.gitea.io/git/Makefile generated vendored
View file

@ -18,7 +18,7 @@ generate:
.PHONY: fmt
fmt:
go fmt $(PACKAGES)
find . -name "*.go" -type f -not -path "./vendor/*" | xargs gofmt -s -w
.PHONY: vet
vet:

View file

@ -118,7 +118,7 @@ func parseTag(line string, opt TagOption) (*Tag, error) {
}
left := strings.TrimSpace(line[25:])
start := strings.Index(left, "(tag: ")
start := strings.Index(left, "tag: ")
if start < 0 {
return nil, nil
}
@ -127,11 +127,11 @@ func parseTag(line string, opt TagOption) (*Tag, error) {
return nil, nil
}
end = end + start + 1
part := strings.IndexByte(left[start+6:end], ',')
part := strings.IndexByte(left[start+5:end], ',')
if part > 0 {
tag.Name = strings.TrimSpace(left[start+6 : start+6+part])
tag.Name = strings.TrimSpace(left[start+5 : start+5+part])
} else {
tag.Name = strings.TrimSpace(left[start+6 : end])
tag.Name = strings.TrimSpace(left[start+5 : end])
}
next := strings.IndexByte(left[end+2:], ' ')
if next < 0 {

View file

@ -162,7 +162,7 @@ func (tes Entries) GetCommitsInfo(commit *Commit, treePath string) ([][]interfac
// GetCommitsInfoWithCustomConcurrency takes advantages of concurrency to speed up getting information
// of all commits that are corresponding to these entries. If the given maxConcurrency is negative or
// equal to zero: the right number of goroutine (concurrency) to use will be choosen related of the
// equal to zero: the right number of goroutine (concurrency) to use will be chosen related of the
// host CPU.
func (tes Entries) GetCommitsInfoWithCustomConcurrency(commit *Commit, treePath string, maxConcurrency int) ([][]interface{}, error) {
if len(tes) == 0 {