Projects STRLCPY afrog Commits cda28d2c
🤬
  • ■ ■ ■ ■ ■ ■
    pkg/config/config.go
    skipped 38 lines
    39 39  }
    40 40   
    41 41  const afrogConfigFilename = "afrog-config.yaml"
    42  -const Version = "1.2.1"
     42 +const Version = "1.2.2"
    43 43   
    44 44  // Create and initialize afrog-config.yaml configuration info
    45 45  func New() (*Config, error) {
    skipped 44 lines
    90 90   
    91 91   configFile := filepath.Join(homeDir, ".config", "afrog", afrogConfigFilename)
    92 92   if !utils.Exists(configFile) {
    93  - return ""
     93 + return configFile
    94 94   }
    95 95   return configFile
    96 96  }
    skipped 58 lines
  • ■ ■ ■ ■
    pkg/upgrade/upgrade.go
    skipped 66 lines
    67 67   return
    68 68   }
    69 69   if isUp {
    70  - fmt.Println(log.LogColor.Info("Downloading latest release.."))
     70 + fmt.Println(log.LogColor.Info("Downloading latest release..."))
    71 71   u.LastestVersion = u.RemoteVersion
    72 72   u.Download()
    73 73   }
    skipped 29 lines
Please wait...
Page is in error, reload to recover