diff --git a/.travis.yml b/.travis.yml index ad8971f8..1a9d9b25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,5 +15,5 @@ matrix: - go: tip install: - - go get gopkg.in/fsnotify/fsnotify.v1 + - go get github.com/fsnotify/fsnotify - go get gopkg.in/tomb.v1 diff --git a/README.md b/README.md index ed8bd9ac..aa60f5c2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -[![Build Status](https://travis-ci.org/hpcloud/tail.svg)](https://travis-ci.org/hpcloud/tail) -[![Build status](https://ci.appveyor.com/api/projects/status/vrl3paf9md0a7bgk/branch/master?svg=true)](https://ci.appveyor.com/project/Nino-K/tail/branch/master) - # Go package for tail-ing files A Go package striving to emulate the features of the BSD `tail` program. diff --git a/watch/inotify.go b/watch/inotify.go index 2bbfe0b6..573afa7a 100644 --- a/watch/inotify.go +++ b/watch/inotify.go @@ -10,7 +10,7 @@ import ( "github.com/hpcloud/tail/util" - "gopkg.in/fsnotify/fsnotify.v1" + "github.com/fsnotify/fsnotify" "gopkg.in/tomb.v1" ) diff --git a/watch/inotify_tracker.go b/watch/inotify_tracker.go index 739b3c2a..1193d445 100644 --- a/watch/inotify_tracker.go +++ b/watch/inotify_tracker.go @@ -11,8 +11,7 @@ import ( "syscall" "github.com/hpcloud/tail/util" - - "gopkg.in/fsnotify/fsnotify.v1" + "github.com/fsnotify/fsnotify" ) type InotifyTracker struct {