Modified run command so launching command would be properly treated

This commit is contained in:
notzippy@gmail.com
2020-07-13 22:35:22 -07:00
parent 2e2f22ad7d
commit ebc9c73ba0
2 changed files with 3 additions and 2 deletions

View File

@@ -162,6 +162,6 @@ func runApp(c *model.CommandConfig) (err error) {
if c.HistoricMode {
runMode = revel_path.RunMode
}
app.Cmd(runMode).Run()
app.Cmd(runMode).Run(c)
return
}