From 7618cf2e94f3173e4710107f5390ec720e7f591c Mon Sep 17 00:00:00 2001 From: daiao <358551898@qq.com> Date: Tue, 7 Jan 2020 15:34:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=82=E6=95=B0=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/concerns/git_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/concerns/git_helper.rb b/app/controllers/concerns/git_helper.rb index e72f1f5da..26e93d99b 100644 --- a/app/controllers/concerns/git_helper.rb +++ b/app/controllers/concerns/git_helper.rb @@ -60,7 +60,7 @@ module GitHelper # 删除文件 def git_delete_file(repo_path, file_path, author_name, author_email, message) - GitService.delete_file(repo_path, repo_path, file_path: file_path, message: message, author_name: author_name, + GitService.delete_file(repo_path: repo_path, file_path: file_path, message: message, author_name: author_name, author_email: author_email) end