Skip to content

Commit

Permalink
fix chrome path in collect-stats job on CI (#10388)
Browse files Browse the repository at this point in the history
  • Loading branch information
mourner authored Feb 17, 2021
1 parent aaf4cac commit 9d90327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/gl-stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function waitForConsole(page) {
(async () => {
const browser = await puppeteer.launch({
args: ['--no-sandbox', '--disable-setuid-sandbox'],
executablePath: process.env.CI ? '/usr/local/bin/google-chrome' : '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome'
executablePath: process.env.CI ? '/usr/bin/google-chrome' : '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome'
});
const page = await browser.newPage();

Expand Down

0 comments on commit 9d90327

Please sign in to comment.