This commit is contained in:
Benson Wong 2018-02-05 13:02:42 -08:00
Родитель 1684b47982
Коммит c13496f493
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -54,10 +54,12 @@ func preflight(c *cli.Context) (err error) {
// check that we got the repo value, which should be the last thing in
// the arg list
args := c.Args()
_, _, err = extractOwnerRepo(args[len(args)-1])
if err != nil {
fmt.Fprintf(outError, "ERROR: %s\n", err.Error())
return err
if len(args) > 0 {
_, _, err = extractOwnerRepo(args[len(args)-1])
if err != nil {
fmt.Fprintf(outError, "ERROR: %s\n", err.Error())
return err
}
}
return
}