From e5dfed1b3bba28cdea35195d84f5a59188963009 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 26 Jul 2021 13:14:28 +0100 Subject: [PATCH] docs/How-To-Open-a-Homebrew-Pull-Request: don't install with debug/verbose. --- docs/How-To-Open-a-Homebrew-Pull-Request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/How-To-Open-a-Homebrew-Pull-Request.md b/docs/How-To-Open-a-Homebrew-Pull-Request.md index 54534b9af2..c34bb19b32 100644 --- a/docs/How-To-Open-a-Homebrew-Pull-Request.md +++ b/docs/How-To-Open-a-Homebrew-Pull-Request.md @@ -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 + brew install --build-from-source brew test brew audit --strict --online ```