[Win] EWS: wincairo-ews cannot apply a patch with *.png
https://bugs.webkit.org/show_bug.cgi?id=193044

Reviewed by Daniel Bates.

WinCairo EWS bots are using Windows Perl. Binary files should be
opened as binary mode.

* Scripts/svn-apply:
(handleGitBinaryChange): Use 'binmode' for binary file handles.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@239718 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Tools/Scripts/svn-apply b/Tools/Scripts/svn-apply
index d840216..ecae4ea 100755
--- a/Tools/Scripts/svn-apply
+++ b/Tools/Scripts/svn-apply
@@ -264,6 +264,7 @@
     if (open FILE, $fullPath) {
         die "$fullPath already exists" if $isFileAddition;
 
+        binmode(FILE);
         $originalContents = join("", <FILE>);
         close FILE;
     }
@@ -286,6 +287,7 @@
             die "Original content of $fullPath mismatches" if $originalContents ne applyGitBinaryPatchDelta($reverseBinaryChunk, $out);
         }
         open FILE, ">", $fullPath or die "Failed to open $fullPath.";
+        binmode(FILE);
         print FILE $out;
         close FILE;
         if ($isFileAddition) {