2017-03-07 00:06:34 +01:00

12 lines
175 B
Ruby

require "hbc/artifact/symlinked"
module Hbc
module Artifact
class Binary < Symlinked
def install_phase
super if CLI.binaries?
end
end
end
end