From c8d4077256df4d9acaf0ada11f1a7c87a5d78b95 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Thu, 7 Apr 2011 12:33:30 +0200 Subject: [PATCH] Use https for issue links at the end of stack traces. Signed-off-by: Adam Vandenberg --- Library/Homebrew/utils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index ca633c5218..0dc1a4b514 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -336,7 +336,7 @@ module GitHub extend self open "http://github.com/api/v2/yaml/issues/search/mxcl/homebrew/open/#{name}" do |f| YAML::load(f.read)['issues'].each do |issue| - issues << 'http://github.com/mxcl/homebrew/issues/#issue/%s' % issue['number'] + issues << 'https://github.com/mxcl/homebrew/issues/#issue/%s' % issue['number'] end end