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)
This commit is contained in:
Stewart Mbofana 2018-04-03 12:01:56 +02:00
parent b5e8006cbe
commit b8db2cc5ba
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

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