chenbhao commited on
Commit
e5056d6
·
1 Parent(s): dfed7ae

feat: open ripgrep with USE_BUILTIN_RIPGREP = '0'

Browse files
Files changed (1) hide show
  1. 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
  )