mirror of
https://github.com/kevin-DL/revel-cmd.git
synced 2026-01-11 18:54:31 +00:00
Fixed run mode for verbose
This commit is contained in:
@@ -209,7 +209,7 @@ func NewHarness(c *model.CommandConfig, paths *model.RevelContainer, runMode str
|
|||||||
// Refresh method rebuilds the Revel application and run it on the given port.
|
// Refresh method rebuilds the Revel application and run it on the given port.
|
||||||
// called by the watcher.
|
// called by the watcher.
|
||||||
func (h *Harness) Refresh() (err *utils.SourceError) {
|
func (h *Harness) Refresh() (err *utils.SourceError) {
|
||||||
t := time.Now();
|
t := time.Now()
|
||||||
fmt.Println("Change detected, recompiling")
|
fmt.Println("Change detected, recompiling")
|
||||||
err = h.refresh()
|
err = h.refresh()
|
||||||
if err != nil && !h.ranOnce && h.useProxy {
|
if err != nil && !h.ranOnce && h.useProxy {
|
||||||
@@ -266,7 +266,7 @@ func (h *Harness) refresh() (err *utils.SourceError) {
|
|||||||
paths, _ = json.Marshal(h.app.PackagePathMap)
|
paths, _ = json.Marshal(h.app.PackagePathMap)
|
||||||
}
|
}
|
||||||
|
|
||||||
runMode = fmt.Sprintf(`{"mode":"%s", "specialUseFlag":%v,"packagePathMap":%s}`, h.app.Paths.RunMode, h.config.Verbose[0], string(paths))
|
runMode = fmt.Sprintf(`{"mode":"%s", "specialUseFlag":%v,"packagePathMap":%s}`, h.app.Paths.RunMode, h.config.GetVerbose(), string(paths))
|
||||||
}
|
}
|
||||||
|
|
||||||
if err2 := h.app.Cmd(runMode).Start(h.config); err2 != nil {
|
if err2 := h.app.Cmd(runMode).Start(h.config); err2 != nil {
|
||||||
|
|||||||
Reference in New Issue
Block a user