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