used viper to get license.txt

This commit is contained in:
Robbin Bonthond 2017-09-29 10:59:17 -05:00
parent b787445794
commit b112c230a5

View file

@ -63,7 +63,7 @@ func getLicense() License {
// If user wants to have custom license, use that.
if viper.IsSet("license.header") || viper.IsSet("license.text") {
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.