Simplify early return condition

Improvements to formula/bottle integration means we can be less
defensive here.
This commit is contained in:
Jack Nagel 2014-07-12 23:11:07 -05:00
parent 7b1ca1d152
commit 2bbc98694a

View File

@ -16,8 +16,7 @@ end
def bottle_file_outdated? f, file
filename = file.basename.to_s
return nil unless f and f.bottle and f.bottle.url \
and filename.match(bottle_regex)
return unless f.bottle && filename.match(bottle_regex)
bottle_ext = filename[bottle_native_regex, 1]
bottle_url_ext = f.bottle.url[bottle_native_regex, 1]