diff options
author | Felix Lange <fjl@twurst.com> | 2016-08-05 03:19:11 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-08-18 21:01:19 +0800 |
commit | 626604e86d9a47900e6da5fc003f7009bb239940 (patch) | |
tree | f8925450476147b1aaab611209d50067b0d87789 /Godeps | |
parent | 9eb2873a9cfef0013efeb002b95999e2a007067a (diff) | |
download | go-tangerine-626604e86d9a47900e6da5fc003f7009bb239940.tar go-tangerine-626604e86d9a47900e6da5fc003f7009bb239940.tar.gz go-tangerine-626604e86d9a47900e6da5fc003f7009bb239940.tar.bz2 go-tangerine-626604e86d9a47900e6da5fc003f7009bb239940.tar.lz go-tangerine-626604e86d9a47900e6da5fc003f7009bb239940.tar.xz go-tangerine-626604e86d9a47900e6da5fc003f7009bb239940.tar.zst go-tangerine-626604e86d9a47900e6da5fc003f7009bb239940.zip |
[release/1.4.11] Godeps: update github.com/rjeczalik/notify to f627deca7a51
Fixes #2829
(cherry picked from commit 4be37222efb2064140bd3d285ef553ec077e0487)
Diffstat (limited to 'Godeps')
4 files changed, 3 insertions, 5 deletions
diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 36104b456..dc7847f33 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -117,7 +117,7 @@ }, { "ImportPath": "github.com/rjeczalik/notify", - "Rev": "5dd6205716539662f8f14ab513552b41eab69d5d" + "Rev": "f627deca7a510d96f0ef9388f2d0e8b16d21f87f" }, { "ImportPath": "github.com/robertkrimen/otto", diff --git a/Godeps/_workspace/src/github.com/rjeczalik/notify/.travis.yml b/Godeps/_workspace/src/github.com/rjeczalik/notify/.travis.yml index 4f1f5f25e..c92863d50 100644 --- a/Godeps/_workspace/src/github.com/rjeczalik/notify/.travis.yml +++ b/Godeps/_workspace/src/github.com/rjeczalik/notify/.travis.yml @@ -21,10 +21,9 @@ env: - PATH=$HOME/bin:$PATH install: - - go get golang.org/x/tools/cmd/vet - go get -t -v ./... script: - - go tool vet -all . + - "(go version | grep -q 1.4) || go tool vet -all ." - go install $GOFLAGS ./... - go test -v -race $GOFLAGS ./... diff --git a/Godeps/_workspace/src/github.com/rjeczalik/notify/appveyor.yml b/Godeps/_workspace/src/github.com/rjeczalik/notify/appveyor.yml index 16d09ac3b..8e762d05c 100644 --- a/Godeps/_workspace/src/github.com/rjeczalik/notify/appveyor.yml +++ b/Godeps/_workspace/src/github.com/rjeczalik/notify/appveyor.yml @@ -11,7 +11,6 @@ environment: install: - go version - - go get golang.org/x/tools/cmd/vet - go get -v -t ./... build_script: diff --git a/Godeps/_workspace/src/github.com/rjeczalik/notify/watcher_fsevents.go b/Godeps/_workspace/src/github.com/rjeczalik/notify/watcher_fsevents.go index 54334912e..9062c17c7 100644 --- a/Godeps/_workspace/src/github.com/rjeczalik/notify/watcher_fsevents.go +++ b/Godeps/_workspace/src/github.com/rjeczalik/notify/watcher_fsevents.go @@ -133,7 +133,7 @@ func (w *watch) Dispatch(ev []FSEvent) { ev[i].Flags, ev[i].Path, i, ev[i].ID, len(ev)) if ev[i].Flags&failure != 0 { // TODO(rjeczalik): missing error handling - panic("unhandled error: " + Event(ev[i].Flags).String()) + continue } if !strings.HasPrefix(ev[i].Path, w.path) { continue |