mirror of
https://github.com/tarampampam/error-pages.git
synced 2024-08-30 18:22:40 +00:00
25 lines
507 B
Go
25 lines
507 B
Go
|
//go:build ignore
|
||
|
// +build ignore
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
cliDocs "github.com/urfave/cli-docs/v3"
|
||
|
|
||
|
"gh.tarampamp.am/error-pages/internal/cli"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
const readmePath = "../../README.md"
|
||
|
|
||
|
if stat, err := os.Stat(readmePath); err == nil && stat.Mode().IsRegular() {
|
||
|
if err = cliDocs.ToTabularToFileBetweenTags(cli.NewApp(""), "error-pages", readmePath); err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
} else if err != nil {
|
||
|
println("readme file not found, cli docs not updated:", err.Error())
|
||
|
}
|
||
|
}
|