Skip to content
Snippets Groups Projects
Commit 38b4a062 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

Don't bottle unless built with correct flag.


Closes Homebrew/homebrew#9350.

Signed-off-by: default avatarMike McQuaid <mike@mikemcquaid.com>
parent 8b762cd9
No related branches found
No related tags found
No related merge requests found
# Builds binary brew package
require 'cmd/install'
require 'tab'
ARGV.each do|formula|
# Get the latest version
......@@ -12,9 +12,16 @@ ARGV.each do|formula|
source = HOMEBREW_CELLAR + formula + version
filename = "#{formula}-#{version}-bottle.tar.gz"
ohai "Bottling #{formula} #{version}..."
destination = Pathname.pwd
tab = Tab.for_keg source
if not tab.built_bottle
onoe "Formula not installed with '--build-bottle': #{formula}"
next
end
HOMEBREW_CELLAR.cd do
ohai "Bottling #{formula} #{version}..."
# Use gzip, faster to compress than bzip2, faster to uncompress than bzip2
# or an uncompressed tarball (and more bandwidth friendly).
safe_system 'tar', 'czf', destination/filename, "#{formula}/#{version}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment