diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 36104b4560bafcf40806dd520b923f2249aa1c32..dc7847f334bf86b032c24d7688ca6dd600dd79cb 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 4f1f5f25e49497d92a6a2d6194ec45e6ef6bd82b..c92863d50ee6df3c322be12e00b62af701c773ec 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 16d09ac3b57c4f4db62038520f81ceb746a2bc71..8e762d05cb848a1b3e3adb63f4369fae6c801cbb 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 54334912ec43af55d22528b1af835ff08bf2f879..9062c17c7f4377fc8e8c25e9d50c389c83088cf2 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