From bc90f9471079db48a8016310c5290513f95bb599 Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Tue, 13 Feb 2024 21:19:41 +0000 Subject: [PATCH] Fix syntax of `brew audit` call `--new-formula` is now simply `--new`. --- docs/Adding-Software-to-Homebrew.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Adding-Software-to-Homebrew.md b/docs/Adding-Software-to-Homebrew.md index d06e4dc090e8a..ca1264f73a139 100644 --- a/docs/Adding-Software-to-Homebrew.md +++ b/docs/Adding-Software-to-Homebrew.md @@ -28,7 +28,7 @@ If you're stuck, ask for help on GitHub or the [Homebrew discussion forum](https ### Testing and auditing the formula -1. Run `brew audit --strict --new-formula --online ` with your formula. If any errors occur, correct your formula and run the audit again. The audit should finish without any errors by the end of this step. +1. Run `brew audit --strict --new --online ` with your formula. If any errors occur, correct your formula and run the audit again. The audit should finish without any errors by the end of this step. 1. Run your formula's test using `brew test `. The test should finish without any errors.