Explorar o código

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

George S. Baugh %!s(int64=4) %!d(string=hai) anos
pai
achega
b8309a4244
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;
     };