From 428551504f409f24fda2d38b399ccfa200d7817a Mon Sep 17 00:00:00 2001 From: kumarabd Date: Sat, 5 Jun 2021 20:42:31 +0530 Subject: [PATCH] bug fix Signed-off-by: kumarabd --- internal/config/config.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/internal/config/config.go b/internal/config/config.go index 52a3ce7c..b53a5cfe 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -1,8 +1,6 @@ package config import ( - "path" - "github.com/layer5io/meshkit/config" configprovider "github.com/layer5io/meshkit/config/provider" "github.com/layer5io/meshkit/utils" @@ -15,9 +13,9 @@ func New(provider string) (config.Handler, error) { err error ) opts := configprovider.Options{ - FilePath: path.Join(utils.GetHome(), ".meshery"), + FilePath: utils.GetHome(), FileType: "yaml", - FileName: "meshsync", + FileName: "meshsync_config", } // Config provider