From 067b7253b32d5f007054d37a399572142de79400 Mon Sep 17 00:00:00 2001 From: Wiktor Zykubek Date: Sat, 28 Dec 2024 21:16:00 +0100 Subject: [PATCH] feat: add notice about reading from Git config --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index af18979..37e2ba6 100644 --- a/main.go +++ b/main.go @@ -109,8 +109,8 @@ 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") - AuthorName := flag.String("name", "", "Set the author name") - AuthorEmail := flag.String("email", "", "Set the author email") + 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") flag.Parse()