Fix double-negation

This commit is contained in:
Chris Baumbauer 2018-11-06 12:06:37 -08:00
parent 008126a878
commit 26673cc827

View file

@ -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