Merge pull request #138 from vsco/ljk/fix-fsnotify
Fix fsnotify repository relocation
This commit is contained in:
commit
a1dbeea552
|
@ -15,5 +15,5 @@ matrix:
|
||||||
- go: tip
|
- go: tip
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- go get gopkg.in/fsnotify.v1
|
- go get gopkg.in/fsnotify/fsnotify.v1
|
||||||
- go get gopkg.in/tomb.v1
|
- go get gopkg.in/tomb.v1
|
||||||
|
|
0
vendor/gopkg.in/fsnotify.v1/AUTHORS → vendor/gopkg.in/fsnotify/fsnotify.v1/AUTHORS
generated
vendored
0
vendor/gopkg.in/fsnotify.v1/AUTHORS → vendor/gopkg.in/fsnotify/fsnotify.v1/AUTHORS
generated
vendored
0
vendor/gopkg.in/fsnotify.v1/LICENSE → vendor/gopkg.in/fsnotify/fsnotify.v1/LICENSE
generated
vendored
0
vendor/gopkg.in/fsnotify.v1/LICENSE → vendor/gopkg.in/fsnotify/fsnotify.v1/LICENSE
generated
vendored
|
@ -10,7 +10,7 @@ import (
|
||||||
|
|
||||||
"github.com/hpcloud/tail/util"
|
"github.com/hpcloud/tail/util"
|
||||||
|
|
||||||
"gopkg.in/fsnotify.v1"
|
"gopkg.in/fsnotify/fsnotify.v1"
|
||||||
"gopkg.in/tomb.v1"
|
"gopkg.in/tomb.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ import (
|
||||||
|
|
||||||
"github.com/hpcloud/tail/util"
|
"github.com/hpcloud/tail/util"
|
||||||
|
|
||||||
"gopkg.in/fsnotify.v1"
|
"gopkg.in/fsnotify/fsnotify.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
type InotifyTracker struct {
|
type InotifyTracker struct {
|
||||||
|
|
Loading…
Reference in New Issue