diff options
author | Anthony Fok <[email protected]> | 2016-04-20 22:28:26 +0800 |
---|---|---|
committer | Anthony Fok <[email protected]> | 2016-04-20 22:28:26 +0800 |
commit | 9ddf52021ba568c6262aa94210c6655a801c833b (patch) | |
tree | 380966dff5b123e9d5a767351ea54f7ce99d5b5a /Dockerfile | |
parent | 5e9b147c2ab5536568ab1254a596479c1ac92b05 (diff) | |
download | hugo-9ddf52021ba568c6262aa94210c6655a801c833b.tar.gz hugo-9ddf52021ba568c6262aa94210c6655a801c833b.zip |
Update import path of fsnotify
Rename "gopkg.in/fsnotify.v1" to "github.com/fsnotify/fsnotify"
per upstream recommendation.
See https://github.com/fsnotify/fsnotify/issues/108 for rationale.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 9481b8fb0..bcd0863c1 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 |