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:
astaxie 2015-03-06 17:29:53 +08:00
commit 73874efe19
1 changed files with 4 additions and 0 deletions

View File

@ -547,6 +547,10 @@ func init() {
func createapi(cmd *Command, args []string) int { func createapi(cmd *Command, args []string) int {
curpath, _ := os.Getwd() curpath, _ := os.Getwd()
if len(args) < 1 {
ColorLog("[ERRO] Argument [appname] is missing\n")
os.Exit(2)
}
if len(args) > 1 { if len(args) > 1 {
cmd.Flag.Parse(args[1:]) cmd.Flag.Parse(args[1:])
} }