Skip to content

Commit

Permalink
update go-diff to fix time parsing issue in git 2.14
Browse files Browse the repository at this point in the history
- closes #7
  • Loading branch information
ezekg committed Dec 21, 2017
1 parent 048ca99 commit 457bb16
Show file tree
Hide file tree
Showing 300 changed files with 31,638 additions and 17,418 deletions.
10 changes: 5 additions & 5 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glide.yaml
Expand Up @@ -6,6 +6,6 @@ import:
version: v1.2
- package: gopkg.in/yaml.v2
- package: sourcegraph.com/sourcegraph/go-diff
version: 7eefa0faf57871a70d7a2c368a454593f07797bc
version: 3f415a150aec0685cb81b73cc201e762e075006d
subpackages:
- diff
2 changes: 1 addition & 1 deletion hound_test.go
Expand Up @@ -229,7 +229,7 @@ func getDiff(t *testing.T, diffContents string) (string, *diff.Hunk) {

fileName := fileDiff.NewName

for _, hunk := range fileDiff.GetHunks() {
for _, hunk := range fileDiff.Hunks {
return fileName, hunk
}

Expand Down
4 changes: 2 additions & 2 deletions main.go
Expand Up @@ -14,7 +14,7 @@ import (
)

var (
version = "0.6.1"
version = "0.6.2"
showVersion = flag.Bool("v", false, "Show version")
noColor = flag.Bool("no-color", false, "Disable color output")
config = flag.String("config", ".githound.yml", "Hound config file")
Expand Down Expand Up @@ -93,7 +93,7 @@ func main() {

for _, fileDiff := range fileDiffs {
fileName := fileDiff.NewName
hunks := fileDiff.GetHunks()
hunks := fileDiff.Hunks

for _, hunk := range hunks {
go func(hunk *diff.Hunk) {
Expand Down
5 changes: 2 additions & 3 deletions vendor/github.com/gogo/protobuf/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vendor/github.com/gogo/protobuf/CONTRIBUTORS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions vendor/github.com/gogo/protobuf/Makefile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions vendor/github.com/gogo/protobuf/Readme.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions vendor/github.com/gogo/protobuf/extensions.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vendor/github.com/gogo/protobuf/gogoproto/doc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 457bb16

Please sign in to comment.