diff --git a/pkg/util/gendoc/gendoc.go b/pkg/util/gendoc/gendoc.go index 14361d8f..16ebe9f9 100644 --- a/pkg/util/gendoc/gendoc.go +++ b/pkg/util/gendoc/gendoc.go @@ -7,6 +7,7 @@ import ( "path/filepath" "strings" "text/template" + "time" "github.com/spf13/cobra" "github.com/spf13/cobra/doc" @@ -31,9 +32,11 @@ type Options struct { func (o *Options) fillDefaults() { if o.ManHeader == nil { + now := time.Now() o.ManHeader = &doc.GenManHeader{ Section: "1", Source: "FrostFS", + Date: &now, } } }