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

Fix double-negation

parent 008126a8
...@@ -53,11 +53,11 @@ module Gitlab ...@@ -53,11 +53,11 @@ module Gitlab
end end
def preinstall_command def preinstall_command
preinstall.join("\n") unless preinstall.nil? preinstall.join("\n") if preinstall
end end
def postinstall_command def postinstall_command
postinstall.join("\n") unless postinstall.nil? postinstall.join("\n") if postinstall
end end
def install_command_flags 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