Use named struct fields

This commit is contained in:
jszwedko 2015-03-10 08:12:44 -07:00
parent 7beac44ab1
commit b95607c608

2
app.go
View File

@ -79,7 +79,7 @@ func NewApp() *App {
// Entry point to the cli app. Parses the arguments slice and routes to the proper flag/args combination
func (a *App) Run(arguments []string) (err error) {
if a.Author != "" || a.Email != "" {
a.Authors = append(a.Authors, Author{a.Author, a.Email})
a.Authors = append(a.Authors, Author{Name: a.Author, Email: a.Email})
}
if HelpPrinter == nil {