Kaynağa Gözat

command auth should use user flag

if the user flag is provided auth should attempt to authenticate with
that user.
pull/36/head
Rob Loranger 4 yıl önce
ebeveyn
işleme
6dbf4f98cd
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: D6F1633A4F0903B8
1 değiştirilmiş dosya ile 3 ekleme ve 0 silme
  1. +3
    -0
      commands/commands.go

+ 3
- 0
commands/commands.go Dosyayı Görüntüle

@@ -358,6 +358,9 @@ func CmdClaim(c *cli.Context) error {

func CmdAuth(c *cli.Context) error {
username := c.Args().Get(0)
if username == "" && c.GlobalIsSet("user") {
username = c.GlobalString("user")
}
// Check configuration
u, err := config.LoadUser(c)
if err != nil {


Yükleniyor…
İptal
Kaydet