Skip to content
Snippets Groups Projects
Commit 21854582 authored by Stan Hu's avatar Stan Hu Committed by Robert Speicher
Browse files

Merge pull request #9749 from Bufallo/fix-redis-check

Fix regex in redis version check
parent b5391284
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -335,7 +335,7 @@ namespace :gitlab do
print "Redis version >= #{min_redis_version}? ... "
 
redis_version = run(%W(redis-cli --version))
redis_version = redis_version.try(:match, /redis-cli (.*)/)
redis_version = redis_version.try(:match, /redis-cli (\d+\.\d+\.\d+)/)
if redis_version &&
(Gem::Version.new(redis_version[1]) > Gem::Version.new(min_redis_version))
puts "yes".green
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment