1
0
mirror of https://github.com/beego/bee.git synced 2024-11-22 10:10:53 +00:00

Merge pull request #347 from amrfaissal/fix-hproseapp

Handle case when appname argument is missing
This commit is contained in:
Faissal Elamraoui 2016-12-27 09:50:51 +01:00 committed by GitHub
commit f9d0b2f2fc

View File

@ -300,9 +300,8 @@ func init() {
func createhprose(cmd *Command, args []string) int { func createhprose(cmd *Command, args []string) int {
output := cmd.Out() output := cmd.Out()
if len(args) < 1 { if len(args) != 1 {
ColorLog("[ERRO] Argument [appname] is missing\n") logger.Fatal("Argument [appname] is missing")
os.Exit(2)
} }
curpath, _ := os.Getwd() curpath, _ := os.Getwd()