mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
reorder some operations
This commit is contained in:
parent
732e4db0d4
commit
b8ad19ad0d
1 changed files with 1 additions and 6 deletions
|
@ -43,17 +43,12 @@ Example: cobra add server -> resulting in a new cmd/server.go`,
|
|||
er("add needs a name for the command")
|
||||
}
|
||||
|
||||
commandName := validateCmdName(args[0])
|
||||
|
||||
if packageName == "" {
|
||||
// derive packageName
|
||||
}
|
||||
|
||||
wd, err := os.Getwd()
|
||||
if err != nil {
|
||||
er(err)
|
||||
}
|
||||
|
||||
commandName := validateCmdName(args[0])
|
||||
command := &Command{
|
||||
CmdName: commandName,
|
||||
CmdParent: parentName,
|
||||
|
|
Loading…
Reference in a new issue