aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorAlexey Palazhchenko2016-06-03 16:11:17 +0400
committerMike McQuaid2016-06-03 13:11:17 +0100
commite760c8bbcaaf2bb42cbd3ca195ae23b6c58501ad (patch)
tree721534b6908adb119e89c4e5f5ffde9d7a9e53c2 /share
parent5ac6eb434e82c071146bae03870db097f9740479 (diff)
downloadbrew-e760c8bbcaaf2bb42cbd3ca195ae23b6c58501ad.tar.bz2
How-To-Open-a-Homebrew-Pull-Request: do not install bottle for test (#315)
Diffstat (limited to 'share')
-rw-r--r--share/doc/homebrew/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/doc/homebrew/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md b/share/doc/homebrew/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md
index 8cf895b0f..1afa01ddb 100644
--- a/share/doc/homebrew/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md
+++ b/share/doc/homebrew/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md
@@ -35,7 +35,7 @@ To make a new branch and submit it for review, create a GitHub pull request with
* If there's a `bottle do` block in the formula: don't remove or change it; we'll update it when we pull your PR.
5. Test your changes on each changed formula by doing the following, and ensure they all pass without issue. (Make sure you do the `brew audit` step while your changed formula is installed.)
1. `brew tests`
- 2. `brew install <CHANGED_FORMULA>`
+ 2. `brew install --build-from-source <CHANGED_FORMULA>`
3. `brew test <CHANGED_FORMULA>`
4. `brew audit --strict <CHANGED_FORMULA>`
6. Make a separate commit for each changed formula with `git add` and `git commit`.