Skip to content

Commit

Permalink
Avoid selecting google-emacs (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Sep 29, 2017
1 parent 3fbbbf2 commit 9413705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome-finder.ts
Expand Up @@ -222,7 +222,7 @@ function uniq(arr: Array<any>) {

function findChromeExecutables(folder: string): Array<string> {
const argumentsRegex = /(^[^ ]+).*/; // Take everything up to the first space
const chromeExecRegex = '^Exec=\/.*\/(google|chrome|chromium)-.*';
const chromeExecRegex = '^Exec=\/.*\/(google-chrome|chrome|chromium)-.*';

let installations: Array<string> = [];
if (canAccess(folder)) {
Expand Down

0 comments on commit 9413705

Please sign in to comment.