diff options
-rw-r--r-- | git_hooks_handle.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git_hooks_handle.go b/git_hooks_handle.go index b0383a2..b047eb9 100644 --- a/git_hooks_handle.go +++ b/git_hooks_handle.go @@ -188,7 +188,7 @@ func hooks_handle_connection(conn net.Conn) { } }() - conn.Write([]byte{hook_return_value}) + _, _ = conn.Write([]byte{hook_return_value}) } func serve_git_hooks(listener net.Listener) error { |