aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorMike McQuaid2015-12-11 08:10:59 +0000
committerMike McQuaid2015-12-11 08:10:59 +0000
commit65b197d2e085e683b56b504b4981247ed6d33949 (patch)
tree5f62360af2c0bda0e6c94447fe74c1e8628fdcb9 /Library/Homebrew/cmd
parente3dcf7776ab5854cf7e0e28527cc70b79aec2c60 (diff)
downloadbrew-65b197d2e085e683b56b504b4981247ed6d33949.tar.bz2
test-bot: fix tap URL detection from Jenkins.
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index b7d156837..d59df4809 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -56,7 +56,7 @@ module Homebrew
# Also can get tap from Jenkins GIT_URL.
url_path = git_url.sub(%r{^https?://github\.com/}, "").chomp("/")
begin
- tap = Tap.fetch(tap)
+ tap = Tap.fetch(url_path)
return tap unless tap.core_formula_repository?
rescue
end