chromedriver 114.0.0 → 114.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/install.js +1 -1
  2. package/package.json +1 -1
package/install.js CHANGED
@@ -83,7 +83,7 @@ function validatePlatform() {
83
83
  /** @type string */
84
84
  let thePlatform = process.platform;
85
85
  if (thePlatform === 'linux') {
86
- if (process.arch === 'arm64' || process.arch === 'x64') {
86
+ if (process.arch === 'arm64' || process.arch === 's390x' || process.arch === 'x64') {
87
87
  thePlatform += '64';
88
88
  } else {
89
89
  console.log('Only Linux 64 bits supported.');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chromedriver",
3
- "version": "114.0.0",
3
+ "version": "114.0.1",
4
4
  "keywords": [
5
5
  "chromedriver",
6
6
  "selenium"