diff --git a/Dockerfile b/Dockerfile index 9481b8fb..bcd0863c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN go get github.com/stretchr/testify/assert \ && go get golang.org/x/text/unicode/norm \ && go get github.com/yosssi/ace \ && go get github.com/spf13/nitro \ - && go get gopkg.in/fsnotify.v1 + && go get github.com/fsnotify/fsnotify COPY . /go/src/github.com/spf13/hugo RUN go get -d -v github.com/spf13/hugo diff --git a/commands/hugo.go b/commands/hugo.go index ec77047a..a10ae9c4 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -33,6 +33,7 @@ import ( "regexp" + "github.com/fsnotify/fsnotify" "github.com/spf13/afero" "github.com/spf13/cobra" "github.com/spf13/fsync" @@ -44,7 +45,6 @@ import ( jww "github.com/spf13/jwalterweatherman" "github.com/spf13/nitro" "github.com/spf13/viper" - "gopkg.in/fsnotify.v1" ) // MainSite represents the Hugo site to build. This variable is exported as it diff --git a/hugolib/site.go b/hugolib/site.go index 4cb65b7f..14643fe0 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -32,6 +32,7 @@ import ( "path" "github.com/bep/inflect" + "github.com/fsnotify/fsnotify" "github.com/spf13/afero" "github.com/spf13/cast" bp "github.com/spf13/hugo/bufferpool" @@ -45,7 +46,6 @@ import ( jww "github.com/spf13/jwalterweatherman" "github.com/spf13/nitro" "github.com/spf13/viper" - "gopkg.in/fsnotify.v1" ) var _ = transform.AbsURL diff --git a/watcher/batcher.go b/watcher/batcher.go index 47086330..0b4083e8 100644 --- a/watcher/batcher.go +++ b/watcher/batcher.go @@ -16,7 +16,7 @@ package watcher import ( "time" - "gopkg.in/fsnotify.v1" + "github.com/fsnotify/fsnotify" ) type Batcher struct {