aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/pull.rb
diff options
context:
space:
mode:
authorMike McQuaid2015-09-11 14:33:39 +0100
committerMike McQuaid2015-09-11 14:59:46 +0100
commitcfc6f737f3848ea22d061e308970ad701d615698 (patch)
tree2bfacbad1b8eb76141b8c18f44c5fcd71b3b8414 /Library/Homebrew/cmd/pull.rb
parent55616a4d019b22b6c3224966e5049240dee9fb62 (diff)
downloadbrew-cfc6f737f3848ea22d061e308970ad701d615698.tar.bz2
pull: allow pulling all testing jobs.
Diffstat (limited to 'Library/Homebrew/cmd/pull.rb')
-rw-r--r--Library/Homebrew/cmd/pull.rb2
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")