diff --git a/pkg/config/config.go b/pkg/config/config.go index e5ff9a98..b7b6dd1d 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -22,7 +22,6 @@ import ( "net/http" "net/http/httputil" "os" - "path/filepath" strings "strings" ) @@ -33,8 +32,6 @@ var ( CaCertPaths string // Verbose represents a debug flag for HTTP Exchanges Verbose bool = false - - ConfigPath = filepath.Join(os.Getenv("HOME"), ".microcks-cli", "config.yaml") ) // CreateTLSConfig wraps the creation of tls.Config object for use with HTTP Client for example.