Popen (at least on OSX) expects an Array, not a String
This was causing the gitlab:check task to exit prematurely with the error "System commands must be given as an array of strings."
This commit is contained in:
parent
c3f088d261
commit
c5f76e5939
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ namespace :gitlab do
|
|||
def check_redis_version
|
||||
print "Redis version >= 2.0.0? ... "
|
||||
|
||||
if run_and_match("redis-cli --version", /redis-cli 2.\d.\d/)
|
||||
if run_and_match(%W(redis-cli --version), /redis-cli 2.\d.\d/)
|
||||
puts "yes".green
|
||||
else
|
||||
puts "no".red
|
||||
|
|
Loading…
Reference in a new issue