diff options
author | Ash McKenzie <amckenzie@gitlab.com> | 2020-04-17 16:23:12 +1000 |
---|---|---|
committer | Ash McKenzie <amckenzie@gitlab.com> | 2020-04-17 16:23:33 +1000 |
commit | 4f4acf4a1e523678355b06234016fa632bae282e (patch) | |
tree | 17f7c90485d0a339e5ecb14fb6131a4c2636903d /internal/command/receivepack/receivepack.go | |
parent | 118143ba6c49573d1437f99cf2b44168bd09b8d1 (diff) | |
download | gitlab-shell-4f4acf4a1e523678355b06234016fa632bae282e.tar.gz |
Geo Pull custom action support
Diffstat (limited to 'internal/command/receivepack/receivepack.go')
-rw-r--r-- | internal/command/receivepack/receivepack.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/internal/command/receivepack/receivepack.go b/internal/command/receivepack/receivepack.go index 3af3941..7271264 100644 --- a/internal/command/receivepack/receivepack.go +++ b/internal/command/receivepack/receivepack.go @@ -28,7 +28,11 @@ func (c *Command) Execute() error { } if response.IsCustomAction() { - customAction := customaction.Command{c.Config, c.ReadWriter} + customAction := customaction.Command{ + Config: c.Config, + ReadWriter: c.ReadWriter, + EOFSent: true, + } return customAction.Execute(response) } |