mirror of
https://github.com/kevin-DL/revel-cmd.git
synced 2026-01-11 18:54:31 +00:00
Fix bad error syntax
An wrapped error message in the cmd module was referencing the wrong parameter value to be built closes revel/revel#1532
This commit is contained in:
@@ -243,7 +243,7 @@ func (h *Harness) refresh() (err *utils.SourceError) {
|
|||||||
}
|
}
|
||||||
err = &utils.SourceError{
|
err = &utils.SourceError{
|
||||||
Title: "App failed to start up",
|
Title: "App failed to start up",
|
||||||
Description: err.Error(),
|
Description: newErr.Error(),
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user