From ef2f166a8c1998bb38fed26242574115da276e00 Mon Sep 17 00:00:00 2001 From: Wiktor Zykubek Date: Sun, 29 Dec 2024 03:04:53 +0100 Subject: [PATCH] feat: add notice about requirement of SPDX ID --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 37e2ba6..980a8a7 100644 --- a/main.go +++ b/main.go @@ -108,7 +108,7 @@ func genLicense(licName string, inputData InputData, outFileName string) error { func main() { OutputFile := flag.String("output", "LICENSE", "Specify different output file") - LicenseName := flag.String("license", "", "Choose a license") + LicenseName := flag.String("license", "", "Specify license by SPDX ID (e.g. BSD-3-Clause)") AuthorName := flag.String("name", "", "Set the author name (read from Git by default)") AuthorEmail := flag.String("email", "", "Set the author email (read from Git by default)") ListLicenses := flag.Bool("list", false, "List available licenses")