diff options
| author | Mike McQuaid | 2012-08-25 11:31:57 -0700 |
|---|---|---|
| committer | Mike McQuaid | 2012-08-25 11:52:37 -0700 |
| commit | 3af3bc7dd5417c2ce17807e44be968ec63824936 (patch) | |
| tree | 72751d317d17a7ecf5efec9477c9a7e61fc95fb2 /Library/Homebrew/tab.rb | |
| parent | ebbc3438a1e6f9014d049c98c54182a31212b1d8 (diff) | |
| download | brew-3af3bc7dd5417c2ce17807e44be968ec63824936.tar.bz2 | |
Rename tab 'built_bottle' to 'build_as_bottle'.
Diffstat (limited to 'Library/Homebrew/tab.rb')
| -rw-r--r-- | Library/Homebrew/tab.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb index 1a334600d..e28ce1eda 100644 --- a/Library/Homebrew/tab.rb +++ b/Library/Homebrew/tab.rb @@ -12,7 +12,7 @@ class Tab < OpenStruct Tab.new :used_options => args.used_options(f), :unused_options => args.unused_options(f), :tabfile => f.prefix + "INSTALL_RECEIPT.json", - :built_bottle => !!args.build_bottle?, + :built_as_bottle => !!args.build_bottle?, :tapped_from => f.tap end @@ -34,7 +34,7 @@ class Tab < OpenStruct rescue FormulaUnavailableError Tab.new :used_options => [], :unused_options => [], - :built_bottle => false, + :built_as_bottle => false, :tapped_from => "" end end @@ -62,7 +62,7 @@ class Tab < OpenStruct def self.dummy_tab f Tab.new :used_options => [], :unused_options => f.build.as_flags, - :built_bottle => false, + :built_as_bottle => false, :tapped_from => "" end @@ -78,7 +78,7 @@ class Tab < OpenStruct MultiJson.encode({ :used_options => used_options, :unused_options => unused_options, - :built_bottle => built_bottle, + :built_as_bottle => built_as_bottle, :tapped_from => tapped_from }) end |
