fix bee hprose error.

This commit is contained in:
Laoliu 2016-12-27 09:01:08 +08:00
parent 0ccc6306b7
commit 20fdbe6a1a
1 changed files with 5 additions and 0 deletions

View File

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