mirror of
https://github.com/spf13/cobra
synced 2024-11-16 18:57:08 +00:00
fix missing newline in cmd/add (#905)
This commit is contained in:
parent
9a31ddff0e
commit
2d7544ebde
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ Example: cobra add server -> resulting in a new cmd/server.go`,
|
||||||
er(err)
|
er(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("%s created at %s", command.CmdName, command.AbsolutePath)
|
fmt.Printf("%s created at %s\n", command.CmdName, command.AbsolutePath)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue