From a3dad588a855238b3576b59e90fd062b19cf55e0 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Tue, 15 Jul 2014 17:05:15 -0500 Subject: [PATCH] Remove default tag value from bottle_filename We always call this method with an explicit tag. --- Library/Homebrew/bottles.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/Homebrew/bottles.rb b/Library/Homebrew/bottles.rb index d9323054df..9a068f8878 100644 --- a/Library/Homebrew/bottles.rb +++ b/Library/Homebrew/bottles.rb @@ -4,7 +4,6 @@ require 'extend/ARGV' require 'bottle_version' def bottle_filename options={} - options = { :tag => bottle_tag }.merge(options) suffix = ".#{options[:tag]}#{bottle_suffix(options[:revision])}" "#{options[:name]}-#{options[:version]}#{suffix}" end