chore: spacing / wording on log message [ci skip]

This commit is contained in:
decentral1se 2025-01-03 17:53:22 +01:00
parent 1194f3b228
commit 17e15dba77
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410

View File

@ -58,7 +58,7 @@ var RecipeNewCommand = &cobra.Command{
if err := os.RemoveAll(gitRepo); err != nil {
log.Fatal(err)
}
log.Debugf("removed example git repo in %s", gitRepo)
log.Debugf("removed .git repo in %s", gitRepo)
meta := newRecipeMeta(recipeName)
@ -76,7 +76,6 @@ var RecipeNewCommand = &cobra.Command{
if err := os.WriteFile(path, templated.Bytes(), 0o644); err != nil {
log.Fatal(err)
}
}
if err := git.Init(r.Dir, true, gitName, gitEmail); err != nil {