Cater for case-sensitive dependencies

Switching jww from jwalterweatherman to jWalterWeatherman,
`vgo` breaks otherwise.

```
vgo: import "github.com/elastic/<snipped>" ->
	import "github.com/elastic/<snipped>/cmd" ->
	import "github.com/spf13/viper" ->
	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:
Panagiotis Moustafellos 2018-02-21 16:28:35 +02:00
parent aafc9e6bc7
commit 500b8946d7
No known key found for this signature in database
GPG key ID: 893B8BDCDD71357E
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"
)