Skip to content

Commit

Permalink
brew-tap: Use https: instead of git: for checkout
Browse files Browse the repository at this point in the history
Just had my University firewall hose `git:` connections.
  • Loading branch information
Sharpie committed Feb 29, 2012
1 parent 9d0116d commit 3151a1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Contributions/examples/brew-tap.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def initialize args
# along with several others from the same network, and not worry about # along with several others from the same network, and not worry about
# folder names clashing with each other. # folder names clashing with each other.
@id = args[:id] || [owner, name].join('-') @id = args[:id] || [owner, name].join('-')
@url = args[:url] || "git://github.com/#{owner}/#{name}.git" @url = args[:url] || "https://github.com/#{owner}/#{name}.git"
end end


def to_hash def to_hash
Expand Down

0 comments on commit 3151a1b

Please sign in to comment.