提交 26673cc8 编写于 作者: C Chris Baumbauer

Fix double-negation

上级 008126a8
......@@ -53,11 +53,11 @@ module Gitlab
end
def preinstall_command
preinstall.join("\n") unless preinstall.nil?
preinstall.join("\n") if preinstall
end
def postinstall_command
postinstall.join("\n") unless postinstall.nil?
postinstall.join("\n") if postinstall
end
def install_command_flags
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册