Explorar el Código

Fixing getDefaultConfigDir

It seems it's not really checking the right folder.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Vincent Demeester hace 9 años
padre
commit
d3fd0974d5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      cliconfig/config.go

+ 1 - 1
cliconfig/config.go

@@ -32,7 +32,7 @@ var (
 func getDefaultConfigDir(confFile string) string {
 	confDir := filepath.Join(homedir.Get(), confFile)
 	// if the directory doesn't exist, maybe we called docker with sudo
-	if _, err := os.Stat(configDir); err != nil {
+	if _, err := os.Stat(confDir); err != nil {
 		if os.IsNotExist(err) {
 			return filepath.Join(homedir.GetWithSudoUser(), confFile)
 		}