Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/git')
-rw-r--r--internal/git/receivepack.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/git/receivepack.go b/internal/git/receivepack.go
index c9670612f..f4dbdba8c 100644
--- a/internal/git/receivepack.go
+++ b/internal/git/receivepack.go
@@ -22,8 +22,8 @@ func HookEnv(req ReceivePackRequest) []string {
return append([]string{
fmt.Sprintf("GL_ID=%s", req.GetGlId()),
fmt.Sprintf("GL_USERNAME=%s", req.GetGlUsername()),
- fmt.Sprintf("GITLAB_SHELL_DIR=%s", config.Config.GitlabShell.Dir),
fmt.Sprintf("GL_REPOSITORY=%s", req.GetGlRepository()),
+ fmt.Sprintf("GITLAB_SHELL_DIR=%s", config.Config.GitlabShell.Dir),
}, gitlabshell.Env()...)
}