Skip to content

Commit 6a7acbe

Browse files
committed
fix(search): correct RIPgrep installation link formatting
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.
1 parent 41357c5 commit 6a7acbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/kotlin/cc/unitmesh/devti/agenttool/search/RipgrepSearcher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ object RipgrepSearcher {
3232
try {
3333
val rgPath = findRipgrepBinary()
3434
if (rgPath == null) {
35-
return@supplyAsync "Ripgrep binary not found, try install it first: https://github.com/BurntSushi/ripgrep?tab=readme-ov-file#installation
35+
return@supplyAsync "Ripgrep binary not found, try install it first: https://github.com/BurntSushi/ripgrep?tab=readme-ov-file#installation"
3636
}
3737

3838
val results = executeRipgrep(

0 commit comments

Comments
 (0)