Skip to content

Commit

Permalink
fix(search): correct RIPgrep installation link formatting
Browse files Browse the repository at this point in the history
The link in the error message for RIPgrep binary not found was missing a closing quotation mark, which could cause issues with string handling. This commit fixes the formatting.
  • Loading branch information
phodal committed Feb 12, 2025
1 parent 41357c5 commit 6a7acbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object RipgrepSearcher {
try {
val rgPath = findRipgrepBinary()
if (rgPath == null) {
return@supplyAsync "Ripgrep binary not found, try install it first: https://github.com/BurntSushi/ripgrep?tab=readme-ov-file#installation
return@supplyAsync "Ripgrep binary not found, try install it first: https://github.com/BurntSushi/ripgrep?tab=readme-ov-file#installation"
}

val results = executeRipgrep(
Expand Down

0 comments on commit 6a7acbe

Please sign in to comment.