Commit cacf14a4 by Robert McLeod

Fixed bug that wasn't showing the StaticRootPath when validation failed

parent e24e3461
...@@ -386,7 +386,7 @@ func validateStaticRootPath() error { ...@@ -386,7 +386,7 @@ func validateStaticRootPath() error {
return nil return nil
} }
return errors.New("Failed to detect generated css or javascript files in static root (%s), have you executed default grunt task?") return fmt.Errorf("Failed to detect generated css or javascript files in static root (%s), have you executed default grunt task?", StaticRootPath)
} }
func NewConfigContext(args *CommandLineArgs) error { func NewConfigContext(args *CommandLineArgs) error {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment