From b56071875ac96633371c07c0ff77c0ba69f7fd82 Mon Sep 17 00:00:00 2001 From: Panagiotis Moustafellos Date: Sun, 30 Sep 2018 06:32:38 +0300 Subject: [PATCH] Cater for case-sensitive dependencies (#463) Switching jww from jwalterweatherman to jWalterWeatherman for cases when vgo is broken --- 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 a32ab73..44da43d 100644 --- a/viper.go +++ b/viper.go @@ -43,7 +43,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" )