1
0

feat: make license flag case insensitive

This commit is contained in:
Wiktor Zykubek 2024-12-28 02:16:58 +01:00
parent 571738c77a
commit 2cf10b9a4b
Signed by: wzykubek
GPG Key ID: 2221881F957D89B9

View File

@ -88,6 +88,8 @@ func main() {
ListTemplates := flag.Bool("list", false, "List available licenses")
flag.Parse()
*License = strings.ToUpper(*License)
if *ListTemplates {
listTemplates()
os.Exit(0)