Commit 9be4c5558f9f6dd04a03573f982d69abefafcef4
Exists in
master
and in
4 other branches
Merge pull request #2485 from gliptak/patch-2
Renaming check function from 1056 to 1059
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
lib/tasks/gitlab/check.rake
@@ -256,7 +256,7 @@ namespace :gitlab do | @@ -256,7 +256,7 @@ namespace :gitlab do | ||
256 | start_checking "Environment" | 256 | start_checking "Environment" |
257 | 257 | ||
258 | check_gitlab_in_git_group | 258 | check_gitlab_in_git_group |
259 | - check_issue_1056_shell_profile_error | 259 | + check_issue_1059_shell_profile_error |
260 | check_gitlab_git_config | 260 | check_gitlab_git_config |
261 | check_python2_exists | 261 | check_python2_exists |
262 | check_python2_version | 262 | check_python2_version |
@@ -313,7 +313,7 @@ namespace :gitlab do | @@ -313,7 +313,7 @@ namespace :gitlab do | ||
313 | end | 313 | end |
314 | 314 | ||
315 | # see https://github.com/gitlabhq/gitlabhq/issues/1059 | 315 | # see https://github.com/gitlabhq/gitlabhq/issues/1059 |
316 | - def check_issue_1056_shell_profile_error | 316 | + def check_issue_1059_shell_profile_error |
317 | gitolite_ssh_user = Gitlab.config.gitolite.ssh_user | 317 | gitolite_ssh_user = Gitlab.config.gitolite.ssh_user |
318 | print "Has no \"-e\" in ~#{gitolite_ssh_user}/.profile ... " | 318 | print "Has no \"-e\" in ~#{gitolite_ssh_user}/.profile ... " |
319 | 319 |