We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afe4570 commit 93cfd43Copy full SHA for 93cfd43
install.js
@@ -88,7 +88,7 @@ class Installer {
88
getPlatform(chromedriverVersion) {
89
const thePlatform = process.platform;
90
if (thePlatform === 'linux') {
91
- if (process.arch === 'arm64' || process.arch === 's390x' || process.arch === 'x64' || process.arch === 'riscv64') {
+ if (process.arch === 'arm64' || process.arch === 's390x' || process.arch === 'x64') {
92
return 'linux64';
93
} else if (process.arch === 'riscv64') {
94
// Check if --chromedriver_filepath is provided via env vars
0 commit comments