docs/How-To-Open-a-Homebrew-Pull-Request: don't install with debug/verbose.

This commit is contained in:
Mike McQuaid 2021-07-26 13:14:28 +01:00 committed by GitHub
parent 111980932b
commit e5dfed1b3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ To make a new branch and submit it for review, create a GitHub pull request with
5. Test your changes by running the following, and ensure they all pass without issue. For changed formulae, make sure you do the `brew audit` step while your changed formula is installed.
```sh
brew tests
brew install --build-from-source --verbose --debug <CHANGED_FORMULA>
brew install --build-from-source <CHANGED_FORMULA>
brew test <CHANGED_FORMULA>
brew audit --strict --online <CHANGED_FORMULA>
```