Commit 23d443a512f0bf56ec52c111b638ba7bbc0bbb5f
Exists in
master
and in
4 other branches
Merge pull request #4854 from aus/patch-1
Fix GitLab Shell version check
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/tasks/gitlab/info.rake
... | ... | @@ -54,7 +54,7 @@ namespace :gitlab do |
54 | 54 | |
55 | 55 | |
56 | 56 | # check Gitolite version |
57 | - gitlab_shell_version_file = "#{Gitlab.config.gitlab_shell.repos_path}/../gitlab-shell/VERSION" | |
57 | + gitlab_shell_version_file = "#{Gitlab.config.gitlab_shell.hooks_path}/../VERSION" | |
58 | 58 | if File.readable?(gitlab_shell_version_file) |
59 | 59 | gitlab_shell_version = File.read(gitlab_shell_version_file) |
60 | 60 | end | ... | ... |