aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/artifact/binary.rb
blob: 646e5c3ad07c31126af92de50fcdea770979fef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
require "hbc/artifact/symlinked"

module Hbc
  module Artifact
    class Binary < Symlinked
      def install_phase
        super unless Hbc.no_binaries
      end
    end
  end
end