diff options
| author | ilovezfs | 2016-09-27 03:30:40 -0700 |
|---|---|---|
| committer | ilovezfs | 2016-09-27 03:31:04 -0700 |
| commit | 5247cb83d78ad70db6a64f21cf11ff049be5ca91 (patch) | |
| tree | ebaf7c614697606b326e1f35667fc55110eedc1b /Library/Homebrew/dev-cmd | |
| parent | ff51e09e170bd7508b8e20e9946ded5af0aa4c92 (diff) | |
| download | brew-5247cb83d78ad70db6a64f21cf11ff049be5ca91.tar.bz2 | |
bump-formula-pr: style fixes
Diffstat (limited to 'Library/Homebrew/dev-cmd')
| -rw-r--r-- | Library/Homebrew/dev-cmd/bump-formula-pr.rb | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/Library/Homebrew/dev-cmd/bump-formula-pr.rb b/Library/Homebrew/dev-cmd/bump-formula-pr.rb index f36584ff6..2d4c0828b 100644 --- a/Library/Homebrew/dev-cmd/bump-formula-pr.rb +++ b/Library/Homebrew/dev-cmd/bump-formula-pr.rb @@ -120,11 +120,10 @@ module Homebrew rsrc.download_strategy = CurlDownloadStrategy rsrc.owner = Resource.new(formula.name) rsrc_path = rsrc.fetch - if Utils.popen_read("/usr/bin/tar", "-tf", rsrc_path) =~ /\/.*\./ - new_hash = rsrc_path.sha256 - else - odie "#{formula}: no url/#{hash_type} specified!" if new_url.include?(".tar") + if Utils.popen_read("/usr/bin/tar", "-tf", rsrc_path) =~ %r{/.*\.} new_hash = rsrc_path.sha256 + elsif new_url.include? ".tar" + odie "#{formula}: no url/#{hash_type} specified!" end end @@ -141,9 +140,7 @@ module Homebrew replacement_pairs << [/^ revision \d+\n(\n( head "))?/m, "\\2"] end - if requested_spec == :stable - replacement_pairs << [/(^ mirror .*\n)?/, ""] - end + replacement_pairs << [/(^ mirror .*\n)?/, ""] if requested_spec == :stable replacement_pairs += if new_url_hash [ @@ -167,12 +164,10 @@ module Homebrew if requested_spec == :stable if File.read(formula.path).include?("version \"#{old_formula_version}\"") replacement_pairs << [old_formula_version.to_s, forced_version] + elsif new_mirror + replacement_pairs << [/^( +)(mirror \"#{new_mirror}\"\n)/m, "\\1\\2\\1version \"#{forced_version}\"\n"] else - if new_mirror - replacement_pairs << [/^( +)(mirror \"#{new_mirror}\"\n)/m, "\\1\\2\\1version \"#{forced_version}\"\n"] - else - replacement_pairs << [/^( +)(url \"#{new_url}\"\n)/m, "\\1\\2\\1version \"#{forced_version}\"\n"] - end + replacement_pairs << [/^( +)(url \"#{new_url}\"\n)/m, "\\1\\2\\1version \"#{forced_version}\"\n"] end elsif requested_spec == :devel replacement_pairs << [/( devel do.+?version \")#{old_formula_version}(\"\n.+?end\n)/m, "\\1#{forced_version}\\2"] |
