提交 c5f76e59 编写于 作者: R Robert Speicher

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."
上级 c3f088d2
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册