diff options
Diffstat (limited to 'lib/gitlab_custom_hook.rb')
-rw-r--r-- | lib/gitlab_custom_hook.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab_custom_hook.rb b/lib/gitlab_custom_hook.rb index b151e29..67096df 100644 --- a/lib/gitlab_custom_hook.rb +++ b/lib/gitlab_custom_hook.rb @@ -47,7 +47,7 @@ class GitlabCustomHook # Submit changes to the hook via its stdin. begin IO.copy_stream(StringIO.new(changes), stdin_writer) - rescue Errno::EPIPE + rescue Errno::EPIPE # rubocop:disable Lint/HandleExceptions # It is not an error if the hook does not consume all of its input. end |