-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix chrome finder on linux & osx #2687
Conversation
Should I create a test file just like we have for chrome-launcher? |
Oops, my bad... thanks for fixing this as I was the one who introduced this bug 👍 |
@arturmiz no worries 😉 It happens to the best of us! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this looks good to me, though it looks like maybe yarn test-launcher-formatting
isn't happy? May need to adjust a line break or something.
Related to the code but not this fix, do you mind switching .travis.yml
to using CHROME_PATH
instead of LIGHTHOUSE_CHROMIUM_PATH
?
So there's good news and bad news. 👍 The good news is that everyone that needs to sign a CLA (the pull request submitter and all commit authors) have done so. Everything is all good there. 😕 The bad news is that it appears that one or more commits were authored by someone other than the pull request submitter. We need to confirm that they're okay with their commits being contributed to this project. Please have them confirm that here in the pull request. Note to project maintainer: This is a terminal state, meaning the |
fixed
fixed |
thx @wardpeet. saved my bacon! |
thanks @paulirish for the cleanup |
We added priority regexes of
LIGHTHOUSE_CHROMIUM_PATH
andCHROME_PATH
even when they weren't populated so we got the regex{(:?)}
which matches everything so the first chrome in the list got hit.We now do explicit checks to add the regex only if they env params are populated
Fixes #2683