diff options
author | Rémy Coutable <remy@rymai.me> | 2018-05-25 13:32:49 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-05-25 13:32:49 +0000 |
commit | cc570b6c44b69469ba675e2e66fc14808890201d (patch) | |
tree | 93c296567b2503f30223566c44c62f1f6d13feea /lib/tasks | |
parent | f5e6300b8b916ce6a583b2344b4edb07945fd153 (diff) | |
parent | d50a80a282b2ca145841774f4be154a977cccfd8 (diff) | |
download | gitlab-ce-cc570b6c44b69469ba675e2e66fc14808890201d.tar.gz |
Merge branch '46600-fix-gitlab-revision-when-not-in-git-repo' into 'master'
Resolve "gitlab 10.8 assumes that installation is a git working copy."
Closes #46600
See merge request gitlab-org/gitlab-ce!19125
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/gitlab/info.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/info.rake b/lib/tasks/gitlab/info.rake index 47ed522aec3..289aa5d9060 100644 --- a/lib/tasks/gitlab/info.rake +++ b/lib/tasks/gitlab/info.rake @@ -47,7 +47,7 @@ namespace :gitlab do puts "" puts "GitLab information".color(:yellow) puts "Version:\t#{Gitlab::VERSION}" - puts "Revision:\t#{Gitlab::REVISION}" + puts "Revision:\t#{Gitlab.revision}" puts "Directory:\t#{Rails.root}" puts "DB Adapter:\t#{database_adapter}" puts "URL:\t\t#{Gitlab.config.gitlab.url}" |