diff options
| author | Mike McQuaid | 2013-11-15 17:32:15 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2013-12-14 17:46:28 +0000 |
| commit | 924655314f6c1c77354195a46fac58edf1a4a6b3 (patch) | |
| tree | bb2c24875023551e397b3fc4daedad5f67ca0eb7 | |
| parent | 9268c4b443f5177d69882543003ed907f28f9bbd (diff) | |
| download | homebrew-924655314f6c1c77354195a46fac58edf1a4a6b3.tar.bz2 | |
Change "mxcl/homebrew" refs to "Homebrew/homebrew"
Closes #24355.
| -rwxr-xr-x | install | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ #!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby # This script installs to /usr/local only. To install elsewhere you can just -# untar https://github.com/mxcl/homebrew/tarball/master anywhere you like or +# untar https://github.com/Homebrew/homebrew/tarball/master anywhere you like or # change the value of HOMEBREW_PREFIX. HOMEBREW_PREFIX = '/usr/local' @@ -162,7 +162,7 @@ Dir.chdir HOMEBREW_PREFIX do if git # we do it in four steps to avoid merge errors when reinstalling system git, "init", "-q" - system git, "remote", "add", "origin", "https://github.com/mxcl/homebrew" + system git, "remote", "add", "origin", "https://github.com/Homebrew/homebrew" args = git, "fetch", "origin", "master:refs/remotes/origin/master", "-n" args << "--depth=1" if ARGV.include? "--fast" @@ -175,7 +175,7 @@ Dir.chdir HOMEBREW_PREFIX do # we use -k for curl because Leopard has a bunch of bad SSL certificates curl_flags = "fsSL" curl_flags << "k" if macos_version <= "10.5" - system "/bin/bash -o pipefail -c '/usr/bin/curl -#{curl_flags} https://github.com/mxcl/homebrew/tarball/master | /usr/bin/tar xz -m --strip 1'" + system "/bin/bash -o pipefail -c '/usr/bin/curl -#{curl_flags} https://github.com/Homebrew/homebrew/tarball/master | /usr/bin/tar xz -m --strip 1'" end end |
