diff options
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/examples/brew-bottle.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Contributions/examples/brew-bottle.rb b/Library/Contributions/examples/brew-bottle.rb index fc1faa4ed..63032bc4e 100755 --- a/Library/Contributions/examples/brew-bottle.rb +++ b/Library/Contributions/examples/brew-bottle.rb @@ -26,7 +26,9 @@ ARGV.each do|formula| # or an uncompressed tarball (and more bandwidth friendly). safe_system 'tar', 'czf', destination/filename, "#{formula}/#{version}" puts "./#{filename}" - puts "bottle 'https://downloads.sf.net/project/machomebrew/Bottles/#{filename}'" - puts "bottle_sha1 '#{(destination/filename).sha1}'" + puts "bottle do" + puts " url 'https://downloads.sf.net/project/machomebrew/Bottles/#{filename}'" + puts " sha1 '#{(destination/filename).sha1}'" + puts "end" end end |
