Updated to build go 1.12 and up

Modified to use fsnotify directlyUpdated travis to not use go deps
This commit is contained in:
notzippy@gmail.com
2020-04-28 11:48:55 -07:00
parent 31cb64e496
commit 0920905a0c
2 changed files with 4 additions and 6 deletions

View File

@@ -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:
@@ -29,7 +28,6 @@ install:
- git clone -b $REVEL_BRANCH git://github.com/revel/revel ../revel/
- git clone -b $REVEL_BRANCH git://github.com/revel/modules ../modules/
- go get -t -v github.com/revel/cmd/revel
- go get -u github.com/golang/dep/cmd/dep
- echo $GOPATH
- echo $PATH
- pwd

View File

@@ -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"
)