mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
12 lines
181 B
Ruby
12 lines
181 B
Ruby
require "hbc/artifact/symlinked"
|
|
|
|
module Hbc
|
|
module Artifact
|
|
class Binary < Symlinked
|
|
def install_phase
|
|
super unless Hbc.no_binaries
|
|
end
|
|
end
|
|
end
|
|
end
|