Merge pull request #4696 from sjackman/any-skip-relocation

BottleSpecification: Do not skip bottle relocation on Linux
This commit is contained in:
Shaun Jackman 2018-08-15 11:42:20 -07:00 committed by GitHub
commit 0fcf8abf32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class BottleSpecification
def skip_relocation?
false
end
end

View File

@ -0,0 +1 @@
require "extend/os/linux/software_spec" if OS.linux?

View File

@ -407,3 +407,5 @@ class PourBottleCheck
@formula.send(:define_method, :pour_bottle?, &block)
end
end
require "extend/os/software_spec"