chore: update copyright dates (#601)

This commit is contained in:
Christian Rocha 2024-06-05 13:14:11 -04:00 committed by GitHub
parent b1b02e4ecb
commit 851a48aee2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2022-2023 Charmbracelet, Inc
Copyright (c) 2022-2024 Charmbracelet, Inc
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -16,7 +16,7 @@ func (m Man) BeforeApply(ctx *kong.Context) error {
// Set the correct man pages description without color escape sequences.
ctx.Model.Help = "A tool for glamorous shell scripts."
man := mangokong.NewManPage(1, ctx.Model)
man = man.WithSection("Copyright", "(C) 2022-2023 Charmbracelet, Inc.\n"+
man = man.WithSection("Copyright", "(c) 2022-2024 Charmbracelet, Inc.\n"+
"Released under MIT license.")
_, _ = fmt.Fprint(ctx.Stdout, man.Build(roff.NewDocument()))
ctx.Exit(0)