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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2018-11-22 13:20:47 +0300
committerDouwe Maan <douwe@gitlab.com>2018-11-22 13:20:47 +0300
commitcd7f2d35aef4442a72b1e99da4cd02d8ac50d2fc (patch)
treec0a73ee5fff6766d9cbe7cb1ed877aafa8e3e8b4 /lib/system_check
parent2bc4a17decf943123f5adff0ea624eef325d776d (diff)
parente94001ba89d4c59e981254b1434789f707071990 (diff)
Merge branch '46950-systemcheck-use-gem-ruby-instead-of-hardcoding-ruby-version' into 'master'
SystemCheck: Use a more reliable way to detect current Ruby version Closes #46950 See merge request gitlab-org/gitlab-ce!23291
Diffstat (limited to 'lib/system_check')
-rw-r--r--lib/system_check/app/ruby_version_check.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system_check/app/ruby_version_check.rb b/lib/system_check/app/ruby_version_check.rb
index d73c39f2c3f..60e07718338 100644
--- a/lib/system_check/app/ruby_version_check.rb
+++ b/lib/system_check/app/ruby_version_check.rb
@@ -11,7 +11,7 @@ module SystemCheck
end
def self.current_version
- @current_version ||= Gitlab::VersionInfo.parse(Gitlab::TaskHelpers.run_command(%w(ruby --version)))
+ @current_version ||= Gitlab::VersionInfo.parse(RUBY_VERSION)
end
def check?