Operate on the actual parameter rather than its name

This commit is contained in:
Luis Muñoz 2017-09-06 11:58:05 -07:00
parent 9ef456ac44
commit a4e3f46f1e

View file

@ -63,7 +63,7 @@ func getLicense() License {
// If user wants to have custom license, use that. // If user wants to have custom license, use that.
if viper.IsSet("license.header") || viper.IsSet("license.text") { if viper.IsSet("license.header") || viper.IsSet("license.text") {
return License{Header: viper.GetString("license.header"), return License{Header: viper.GetString("license.header"),
Text: "license.text"} Text: viper.GetString("license.text")}
} }
// If user wants to have built-in license, use that. // If user wants to have built-in license, use that.