diff --git a/src/env/node/git/locator.ts b/src/env/node/git/locator.ts index bb544f4..b471f63 100644 --- a/src/env/node/git/locator.ts +++ b/src/env/node/git/locator.ts @@ -70,12 +70,8 @@ async function findSpecificGit(path: string): Promise { async function findGitDarwin(): Promise { try { - let path = await run('which', ['git'], 'utf8'); - path = path.replace(/^\s+|\s+$/g, ''); - - if (path !== '/usr/bin/git') { - return findSpecificGit(path); - } + const path = (await run('which', ['git'], 'utf8')).trim(); + if (path !== '/usr/bin/git') return findSpecificGit(path); try { await run('xcode-select', ['-p'], 'utf8');