diff --git a/go.mod b/go.mod index be96e69..869baa4 100644 --- a/go.mod +++ b/go.mod @@ -6,6 +6,7 @@ require ( github.com/coreos/go-systemd v0.0.0-20190212144455-93d5ec2c7f76 // indirect github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect + github.com/fsnotify/fsnotify v1.4.8-0.20190308170645-11844c0959f6 github.com/ghodss/yaml v1.0.0 github.com/gogo/protobuf v1.2.1 // indirect github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef // indirect diff --git a/go.sum b/go.sum index 1145c31..2d78836 100644 --- a/go.sum +++ b/go.sum @@ -24,6 +24,8 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumC github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/fsnotify/fsnotify v1.4.8-0.20190308170645-11844c0959f6 h1:X/u/4FGNcFj+aRUc0K08Ot9rqXP0Y/vd+n7MZYpkNak= +github.com/fsnotify/fsnotify v1.4.8-0.20190308170645-11844c0959f6/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gogo/protobuf v1.2.1 h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE= diff --git a/viper.go b/viper.go index 916c190..fd224d1 100644 --- a/viper.go +++ b/viper.go @@ -35,11 +35,11 @@ import ( "github.com/ghodss/yaml" + "github.com/fsnotify/fsnotify" "github.com/hashicorp/hcl" "github.com/hashicorp/hcl/hcl/printer" "github.com/magiconair/properties" "github.com/mitchellh/mapstructure" - "github.com/nwingert/fsnotify" "github.com/pelletier/go-toml" "github.com/spf13/afero" "github.com/spf13/cast" diff --git a/viper_test.go b/viper_test.go index a170615..cd05110 100644 --- a/viper_test.go +++ b/viper_test.go @@ -22,8 +22,8 @@ import ( "testing" "time" + "github.com/fsnotify/fsnotify" "github.com/mitchellh/mapstructure" - "github.com/nwingert/fsnotify" "github.com/spf13/afero" "github.com/spf13/cast"