mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
parent
0dacccfbaa
commit
d5bde60e02
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue