Ver Fonte

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

George S. Baugh há 4 anos atrás
pai
commit
b8309a4244
1 ficheiros alterados com 1 adições e 1 exclusões
  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;
     };