Remove default tag value from bottle_filename

We always call this method with an explicit tag.
This commit is contained in:
Jack Nagel 2014-07-15 17:05:15 -05:00
parent 5d1977363f
commit a3dad588a8

View File

@ -4,7 +4,6 @@ require 'extend/ARGV'
require 'bottle_version' require 'bottle_version'
def bottle_filename options={} def bottle_filename options={}
options = { :tag => bottle_tag }.merge(options)
suffix = ".#{options[:tag]}#{bottle_suffix(options[:revision])}" suffix = ".#{options[:tag]}#{bottle_suffix(options[:revision])}"
"#{options[:name]}-#{options[:version]}#{suffix}" "#{options[:name]}-#{options[:version]}#{suffix}"
end end