feat: open ripgrep with USE_BUILTIN_RIPGREP = '0'
Browse files- src/utils/ripgrep.ts +1 -0
src/utils/ripgrep.ts
CHANGED
|
@@ -29,6 +29,7 @@ type RipgrepConfig = {
|
|
| 29 |
}
|
| 30 |
|
| 31 |
const getRipgrepConfig = memoize((): RipgrepConfig => {
|
|
|
|
| 32 |
const userWantsSystemRipgrep = isEnvDefinedFalsy(
|
| 33 |
process.env.USE_BUILTIN_RIPGREP,
|
| 34 |
)
|
|
|
|
| 29 |
}
|
| 30 |
|
| 31 |
const getRipgrepConfig = memoize((): RipgrepConfig => {
|
| 32 |
+
process.env.USE_BUILTIN_RIPGREP = '0'
|
| 33 |
const userWantsSystemRipgrep = isEnvDefinedFalsy(
|
| 34 |
process.env.USE_BUILTIN_RIPGREP,
|
| 35 |
)
|