Selaa lähdekoodia

Fix #461: suppress warning in CanStartBinary logic, thanks KIMOTO

George S. Baugh 4 vuotta sitten
vanhempi
sitoutus
b8309a4244
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      lib/Selenium/CanStartBinary/FindBinary.pm

+ 1 - 1
lib/Selenium/CanStartBinary/FindBinary.pm

@@ -48,7 +48,7 @@ sub _validate_manual_binary {
 
     my $abs_executable = eval {
         my $path = abs_path($executable);
-        die unless -e $path;
+        die if $path && !-f $path;
         $path;
     };