diff options
Diffstat (limited to 'go/internal/command/fallback/fallback.go')
-rw-r--r-- | go/internal/command/fallback/fallback.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/go/internal/command/fallback/fallback.go b/go/internal/command/fallback/fallback.go index 71e2a98..f525a57 100644 --- a/go/internal/command/fallback/fallback.go +++ b/go/internal/command/fallback/fallback.go @@ -4,8 +4,6 @@ import ( "os" "path/filepath" "syscall" - - "gitlab.com/gitlab-org/gitlab-shell/go/internal/command/readwriter" ) type Command struct { @@ -22,7 +20,7 @@ const ( RubyProgram = "gitlab-shell-ruby" ) -func (c *Command) Execute(*readwriter.ReadWriter) error { +func (c *Command) Execute() error { rubyCmd := filepath.Join(c.RootDir, "bin", RubyProgram) // Ensure rubyArgs[0] is the full path to gitlab-shell-ruby |