From 9bc3143f53f53107fb03b2f36472945946624920 Mon Sep 17 00:00:00 2001 From: Felix Wiedmann Date: Sat, 8 May 2021 23:23:43 +0200 Subject: [PATCH] ref(changelog): add unit description of max-file-size --- cmd/go-semantic-release/commands/changelog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/go-semantic-release/commands/changelog.go b/cmd/go-semantic-release/commands/changelog.go index fbd9591..22154a3 100644 --- a/cmd/go-semantic-release/commands/changelog.go +++ b/cmd/go-semantic-release/commands/changelog.go @@ -10,7 +10,7 @@ func init() { changelogCmd.Flags().Bool("checks", false, "Check for missing values and envs") changelogCmd.Flags().Bool("overwrite", false, "Overwrite the content of the changelog. Default is to prepend the new changelog to the existing file.") changelogCmd.Flags().StringP("out", "o", "CHANGELOG.md", "Name of the file") - changelogCmd.Flags().Int64("max-file-size", 10, "The max allowed file size for a changelog file. If the file size is larger, the current file will be moved to a new file named -01.md. The next changelog will be written to de default file.") + changelogCmd.Flags().Int64("max-file-size", 10, "The max allowed file size in MB for a changelog file. If the file size is larger, the current file will be moved to a new file named -01.md. The next changelog will be written to de default file.") rootCmd.AddCommand(changelogCmd) }