diff options
| author | Mike McQuaid | 2015-09-11 14:33:39 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2015-09-11 14:59:46 +0100 |
| commit | cfc6f737f3848ea22d061e308970ad701d615698 (patch) | |
| tree | 2bfacbad1b8eb76141b8c18f44c5fcd71b3b8414 | |
| parent | 55616a4d019b22b6c3224966e5049240dee9fb62 (diff) | |
| download | brew-cfc6f737f3848ea22d061e308970ad701d615698.tar.bz2 | |
pull: allow pulling all testing jobs.
| -rw-r--r-- | Library/Homebrew/cmd/pull.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb index edb905a36..308a1c158 100644 --- a/Library/Homebrew/cmd/pull.rb +++ b/Library/Homebrew/cmd/pull.rb @@ -63,7 +63,7 @@ module Homebrew if arg.to_i > 0 url = "https://github.com/Homebrew/homebrew/pull/#{arg}" issue = arg - elsif (testing_match = arg.match %r{brew.sh/job/Homebrew%20Testing/(\d+)/}) + elsif (testing_match = arg.match %r{brew.sh/job/Homebrew.*Testing/(\d+)/}) _, testing_job = *testing_match url = "https://github.com/Homebrew/homebrew/compare/master...BrewTestBot:testing-#{testing_job}" odie "Testing URLs require `--bottle`!" unless ARGV.include?("--bottle") |
