Rename project to git-project-manager
All checks were successful
Build and Publish / release (push) Successful in 1m10s

This commit is contained in:
2024-12-27 17:42:44 -05:00
parent 9dd38317b8
commit c78c41f567
51 changed files with 353 additions and 309 deletions

View File

@@ -39,10 +39,10 @@ func runDocsCmd(cmd *cobra.Command, args []string) {
}
plog.Info("docs generation complete", plog.Args(
"type", args[0], "docsDir", outDir))
"type", args[0], "docsDir", outDir, "err", err))
}
func prepareDocsDir(cmd *cobra.Command, outDir string) {
func prepareDocsDir(_ *cobra.Command, outDir string) {
_, err := os.Stat(outDir)
if err != nil {
err = os.Mkdir(outDir, 0o755)