Commit 26673cc8 authored by Chris Baumbauer's avatar Chris Baumbauer

Fix double-negation

parent 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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment