From 402dcab4f1a9e2ea7310e9d6137abe1299f48bf3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9my=20Coutable?= <remy@rymai.me>
Date: Mon, 24 Oct 2016 20:47:50 +0200
Subject: [PATCH] Use File.write instead of File.open + File#write
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Rémy Coutable <remy@rymai.me>
---
 lib/gitlab/ee_compat_check.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/gitlab/ee_compat_check.rb b/lib/gitlab/ee_compat_check.rb
index 6f8d2ca3220..fd9fd56510f 100644
--- a/lib/gitlab/ee_compat_check.rb
+++ b/lib/gitlab/ee_compat_check.rb
@@ -111,7 +111,7 @@ module Gitlab
       output, status = Gitlab::Popen.popen(%w[git format-patch FETCH_HEAD --stdout])
       throw(:halt_check, :ko) unless status.zero?
 
-      File.open(filepath, 'w+') { |f| f.write(output) }
+      File.write(filepath, output)
       throw(:halt_check, :ko) unless File.exist?(filepath)
     end
 
-- 
GitLab