Skip to content

Commit

Permalink
Merge branch 'main' of github.com:sumanchapai/ere
Browse files Browse the repository at this point in the history
  • Loading branch information
sumanchapai committed Jul 7, 2024
2 parents 4fba16a + 3b1ea85 commit 844c9bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.5.0
2 changes: 1 addition & 1 deletion cmd/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.5.0
2 changes: 1 addition & 1 deletion cmd/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To search events whose title begins with the world "deadline" and contains the w
ere search "^deadline.*urgent"
`,
Run: func(_ *cobra.Command, args []string) {
searchRegex, err := regexp.Compile(args[0])
searchRegex, err := regexp.Compile(fmt.Sprintf("(?i)%v", args[0]))
if err != nil {
fmt.Println("error in regular expression")
log.Fatal(err)
Expand Down

0 comments on commit 844c9bb

Please sign in to comment.