Skip to content

Commit

Permalink
new version (#17)
Browse files Browse the repository at this point in the history
* new version

* fix for windows
  • Loading branch information
soulgalore authored Feb 26, 2024
1 parent 5c55a17 commit 02cde59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions install.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ function getChromedriverUrl() {
return urlBase + 'linux64/chromedriver-linux64.zip';
else return undefined;
case 'win32':
return urlBase + '/win32/chromedriver-win32.zip';
return urlBase + 'win32/chromedriver-win32.zip';
case 'win64':
return urlBase + '/win64/chromedriver-win64.zip';
return urlBase + 'win64/chromedriver-win64.zip';
default:
return undefined;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sitespeed.io/chromedriver",
"version": "122.0.6261-57",
"chromedriver_version": "122.0.6261.57",
"chromedriver_version": "122.0.6261.69",
"description": "Install and launch Chromedriver for Mac, Linux & Windows",
"main": "index.js",
"files": [
Expand Down

0 comments on commit 02cde59

Please sign in to comment.