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 cb89f97 commit 37cd813Copy full SHA for 37cd813
java/src/org/openqa/selenium/manager/SeleniumManager.java
@@ -194,11 +194,11 @@ private synchronized Path getBinary() {
194
} else if (current.is(MAC)) {
195
folder = "macos";
196
} else if (current.is(LINUX)) {
197
- if (System.getProperty("os.arch").contains("arm")) {
198
- throw new WebDriverException("Linux ARM is not supported by Selenium Manager");
199
- } else {
200
- folder = "linux";
201
- }
+ if (System.getProperty("os.arch").contains("arm")) {
+ throw new WebDriverException("Linux ARM is not supported by Selenium Manager");
+ } else {
+ folder = "linux";
+ }
202
} else if (current.is(UNIX)) {
203
LOG.warning(
204
String.format(
0 commit comments