mirror of
https://github.com/beego/bee.git
synced 2025-04-15 14:06:52 +00:00
Merge pull request #104 from kyle-wang/master
fix error msg when use command "bee api" bug missing the Argument
This commit is contained in:
commit
73874efe19
@ -547,6 +547,10 @@ func init() {
|
||||
|
||||
func createapi(cmd *Command, args []string) int {
|
||||
curpath, _ := os.Getwd()
|
||||
if len(args) < 1 {
|
||||
ColorLog("[ERRO] Argument [appname] is missing\n")
|
||||
os.Exit(2)
|
||||
}
|
||||
if len(args) > 1 {
|
||||
cmd.Flag.Parse(args[1:])
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user