diff --git a/chrome-launcher/chrome-finder.ts b/chrome-launcher/chrome-finder.ts index d4bda1b16730..01c129246b36 100644 --- a/chrome-launcher/chrome-finder.ts +++ b/chrome-launcher/chrome-finder.ts @@ -107,8 +107,7 @@ export function linux() { ]; executables.forEach((executable: string) => { try { - const chromePath = - execFileSync('which', [executable]).toString().split(newLineRegex)[0]; + const chromePath = execFileSync('which', [executable]).toString().split(newLineRegex)[0]; if (canAccess(chromePath)) { installations.push(chromePath);