From b8db2cc5badc3c06c22578e252e1671b1111ac27 Mon Sep 17 00:00:00 2001 From: Stewart Mbofana Date: Tue, 3 Apr 2018 12:01:56 +0200 Subject: [PATCH] Getting case error when trying to import the module with vgo; Error message: import "github.com/spf13/jwalterweatherman": module path of repo is github.com/spf13/jWalterWeatherman, not github.com/spf13/jwalterweatherman (wrong case) --- util.go | 2 +- viper.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/util.go b/util.go index 952cad4..e50d69b 100644 --- a/util.go +++ b/util.go @@ -20,7 +20,7 @@ import ( "github.com/spf13/afero" "github.com/spf13/cast" - jww "github.com/spf13/jwalterweatherman" + jww "github.com/spf13/jWalterWeatherman" ) // ConfigParseError denotes failing to parse configuration file. diff --git a/viper.go b/viper.go index e9966ba..5a5ced6 100644 --- a/viper.go +++ b/viper.go @@ -42,7 +42,7 @@ import ( toml "github.com/pelletier/go-toml" "github.com/spf13/afero" "github.com/spf13/cast" - jww "github.com/spf13/jwalterweatherman" + jww "github.com/spf13/jWalterWeatherman" "github.com/spf13/pflag" )