bottle: write to relative path if exists.
This commit is contained in:
parent
b0bf181788
commit
3f489e1eed
@ -194,7 +194,12 @@ module Homebrew extend self
|
|||||||
|
|
||||||
if ARGV.include? '--write'
|
if ARGV.include? '--write'
|
||||||
f = Formula.factory formula_name
|
f = Formula.factory formula_name
|
||||||
formula_path = HOMEBREW_REPOSITORY+"Library/Formula/#{f.name}.rb"
|
formula_relative_path = "Library/Formula/#{f.name}.rb"
|
||||||
|
if File.exists? formula_relative_path
|
||||||
|
formula_path = Pathname.new(formula_relative_path)
|
||||||
|
else
|
||||||
|
formula_path = HOMEBREW_REPOSITORY+formula_relative_path
|
||||||
|
end
|
||||||
inreplace formula_path do |s|
|
inreplace formula_path do |s|
|
||||||
if f.bottle
|
if f.bottle
|
||||||
s.gsub!(/ bottle do.+?end\n/m, output)
|
s.gsub!(/ bottle do.+?end\n/m, output)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user