diff --git a/cli/cmd/root.go b/cli/cmd/root.go index a820c4cc5..04e96b323 100644 --- a/cli/cmd/root.go +++ b/cli/cmd/root.go @@ -19,7 +19,7 @@ func init() { return rootCmd.Help() } - regex := regexp.MustCompile(args[0]) // MustCompile panics if expression cant be compiled into regex + regex := regexp.MustCompile(args[0]) // TODO: show proper error message when this fails mizu.Run(regex) return nil }