Skip to content

Commit a1dbeea

Browse files
author
sergei-utinski
authored
Merge pull request hpcloud#138 from vsco/ljk/fix-fsnotify
Fix fsnotify repository relocation
2 parents 37f4271 + 000912a commit a1dbeea

17 files changed

+3
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ matrix:
1515
- go: tip
1616

1717
install:
18-
- go get gopkg.in/fsnotify.v1
18+
- go get gopkg.in/fsnotify/fsnotify.v1
1919
- go get gopkg.in/tomb.v1

watch/inotify.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"github.com/hpcloud/tail/util"
1212

13-
"gopkg.in/fsnotify.v1"
13+
"gopkg.in/fsnotify/fsnotify.v1"
1414
"gopkg.in/tomb.v1"
1515
)
1616

watch/inotify_tracker.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
"github.com/hpcloud/tail/util"
1414

15-
"gopkg.in/fsnotify.v1"
15+
"gopkg.in/fsnotify/fsnotify.v1"
1616
)
1717

1818
type InotifyTracker struct {

0 commit comments

Comments
 (0)