aboutsummaryrefslogtreecommitdiff
path: root/client/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/config.go')
-rw-r--r--client/config.go12
1 files changed, 8 insertions, 4 deletions
diff --git a/client/config.go b/client/config.go
index eae3bfa..4536994 100644
--- a/client/config.go
+++ b/client/config.go
@@ -1,6 +1,8 @@
package client
import (
+ "os"
+
"github.com/mitchellh/go-homedir"
"github.com/spf13/pflag"
"github.com/spf13/viper"
@@ -28,10 +30,12 @@ func setDefaults() {
// ReadConfig reads the client configuration from a file into a Config struct.
func ReadConfig(path string) (*Config, error) {
setDefaults()
- viper.SetConfigFile(path)
- viper.SetConfigType("hcl")
- if err := viper.ReadInConfig(); err != nil {
- return nil, err
+ if _, err := os.Stat(path); err == nil {
+ viper.SetConfigFile(path)
+ viper.SetConfigType("hcl")
+ if err := viper.ReadInConfig(); err != nil {
+ return nil, err
+ }
}
c := &Config{}
if err := viper.Unmarshal(c); err != nil {