From d1e9215a189d2891cc50e8bd95676a573536fd2c Mon Sep 17 00:00:00 2001 From: "notzippy@gmail.com" Date: Tue, 28 Apr 2020 11:48:55 -0700 Subject: [PATCH] Updated to build go 1.12 and up Modified to use fsnotify directly --- .travis.yml | 7 +++---- watcher/watcher.go | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index f191f773..3f144281 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,9 @@ language: go go: - - "1.8.x" - - "1.9.x" - - "1.10.x" - - "1.11.x" + - "1.12.x" + - "1.13.x" + - "1.14.x" - "tip" os: diff --git a/watcher/watcher.go b/watcher/watcher.go index f4ee0be2..b055e7e7 100644 --- a/watcher/watcher.go +++ b/watcher/watcher.go @@ -12,7 +12,7 @@ import ( "github.com/revel/cmd/model" "github.com/revel/cmd/utils" - "gopkg.in/fsnotify/fsnotify.v1" + "github.com/fsnotify/fsnotify" "time" )