Use docs.brew.sh links.
This commit is contained in:
parent
d41bebae8c
commit
cda91e3ef4
6 changed files with 11 additions and 11 deletions
|
@ -6,7 +6,7 @@ First time contributing to Homebrew? Read our [Code of Conduct](https://github.c
|
|||
|
||||
* run `brew update` (twice)
|
||||
* run and read `brew doctor`
|
||||
* read [the Troubleshooting Checklist](https://github.com/Homebrew/brew/blob/master/docs/Troubleshooting.md#troubleshooting)
|
||||
* read [the Troubleshooting Checklist](http://docs.brew.sh/Troubleshooting.html)
|
||||
* open an issue on the formula's repository
|
||||
|
||||
### Submit a version upgrade for the `foo` formula
|
||||
|
@ -16,11 +16,11 @@ First time contributing to Homebrew? Read our [Code of Conduct](https://github.c
|
|||
|
||||
### Add a new formula for `foo` version `2.3.4` from `$URL`
|
||||
|
||||
* read [the Formula Cookbook](https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md#formula-cookbook) or: `brew create $URL` and make edits
|
||||
* read [the Formula Cookbook](http://docs.brew.sh/Formula-Cookbook.html) or: `brew create $URL` and make edits
|
||||
* `brew install --build-from-source foo`
|
||||
* `brew audit --new-formula foo`
|
||||
* `git commit` with message formatted `foo 2.3.4 (new formula)`
|
||||
* [open a pull request](https://github.com/Homebrew/brew/blob/master/docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md#how-to-open-a-homebrew-pull-request-and-get-it-merged) and fix any failing tests
|
||||
* [open a pull request](http://docs.brew.sh/How-To-Open-a-Homebrew-Pull-Request.html) and fix any failing tests
|
||||
|
||||
### Contribute a fix to the `foo` formula
|
||||
|
||||
|
@ -28,6 +28,6 @@ First time contributing to Homebrew? Read our [Code of Conduct](https://github.c
|
|||
* leave the [`bottle`](http://www.rubydoc.info/github/Homebrew/brew/master/Formula#bottle-class_method) as-is
|
||||
* `brew uninstall --force foo`, `brew install --build-from-source foo`, `brew test foo`, and `brew audit --strict foo`
|
||||
* `git commit` with message formatted `foo: fix <insert details>`
|
||||
* [open a pull request](https://github.com/Homebrew/brew/blob/master/docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md#how-to-open-a-homebrew-pull-request-and-get-it-merged) and fix any failing tests
|
||||
* [open a pull request](http://docs.brew.sh/How-To-Open-a-Homebrew-Pull-Request.html) and fix any failing tests
|
||||
|
||||
Thanks!
|
||||
|
|
|
@ -148,7 +148,7 @@ class Pypy < Formula
|
|||
To update setuptools and pip between pypy releases, run:
|
||||
pip_pypy install --upgrade pip setuptools
|
||||
|
||||
See: https://github.com/Homebrew/brew/blob/master/docs/Homebrew-and-Python.md
|
||||
See: http://docs.brew.sh/Homebrew-and-Python.html
|
||||
EOS
|
||||
end
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ class Pypy3 < Formula
|
|||
To update pip and setuptools between pypy3 releases, run:
|
||||
pip_pypy3 install --upgrade pip setuptools
|
||||
|
||||
See: https://github.com/Homebrew/brew/blob/master/docs/Homebrew-and-Python.md
|
||||
See: http://docs.brew.sh/Homebrew-and-Python.html
|
||||
EOS
|
||||
end
|
||||
|
||||
|
|
|
@ -296,7 +296,7 @@ class Python < Formula
|
|||
<<-EOF.undent
|
||||
# This file is created by Homebrew and is executed on each python startup.
|
||||
# Don't print from here, or else python command line scripts may fail!
|
||||
# <https://github.com/Homebrew/brew/blob/master/docs/Homebrew-and-Python.md>
|
||||
# <http://docs.brew.sh/Homebrew-and-Python.html>
|
||||
import re
|
||||
import os
|
||||
import sys
|
||||
|
@ -352,7 +352,7 @@ class Python < Formula
|
|||
They will install into the site-package directory
|
||||
#{site_packages}
|
||||
|
||||
See: https://github.com/Homebrew/brew/blob/master/docs/Homebrew-and-Python.md
|
||||
See: http://docs.brew.sh/Homebrew-and-Python.html
|
||||
EOS
|
||||
end
|
||||
|
||||
|
|
|
@ -279,7 +279,7 @@ class Python3 < Formula
|
|||
<<-EOF.undent
|
||||
# This file is created by Homebrew and is executed on each python startup.
|
||||
# Don't print from here, or else python command line scripts may fail!
|
||||
# <https://github.com/Homebrew/brew/blob/master/docs/Homebrew-and-Python.md>
|
||||
# <http://docs.brew.sh/Homebrew-and-Python.html>
|
||||
import re
|
||||
import os
|
||||
import sys
|
||||
|
@ -325,7 +325,7 @@ class Python3 < Formula
|
|||
They will install into the site-package directory
|
||||
#{HOMEBREW_PREFIX/"lib/python#{xy}/site-packages"}
|
||||
|
||||
See: https://github.com/Homebrew/brew/blob/master/docs/Homebrew-and-Python.md
|
||||
See: http://docs.brew.sh/Homebrew-and-Python.html
|
||||
EOS
|
||||
|
||||
# Tk warning only for 10.6
|
||||
|
|
|
@ -13,7 +13,7 @@ Just `brew install <formula>`. This is the default tap for Homebrew and is insta
|
|||
## Troubleshooting
|
||||
First, please run `brew update` (twice) and `brew doctor`.
|
||||
|
||||
Second, read the [Troubleshooting Checklist](https://github.com/Homebrew/brew/blob/master/docs/Troubleshooting.md#troubleshooting).
|
||||
Second, read the [Troubleshooting Checklist](http://docs.brew.sh/Troubleshooting.html).
|
||||
|
||||
**If you don’t read these it will take us far longer to help you with your problem.**
|
||||
|
||||
|
|
Loading…
Reference in a new issue