From 009809668242438a8613ecb749999e740d624a94 Mon Sep 17 00:00:00 2001 From: Brian Pugh Date: Fri, 24 Feb 2023 10:08:41 -0800 Subject: [PATCH] CODECONVENTIONS: Fix brew uncrustify installation instructions. For security reasons, homebrew stopped allowing direct Formula references. Signed-off-by: Brian Pugh --- CODECONVENTIONS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODECONVENTIONS.md b/CODECONVENTIONS.md index 0bd7a7327a..3b678bfeb8 100644 --- a/CODECONVENTIONS.md +++ b/CODECONVENTIONS.md @@ -102,7 +102,7 @@ Brew This command may work, please raise a new Issue if it doesn't: ``` -brew install https://github.com/Homebrew/homebrew-core/raw/2b07d8192623365078a8b855a164ebcdf81494a6/Formula/uncrustify.rb +curl -L https://github.com/Homebrew/homebrew-core/raw/2b07d8192623365078a8b855a164ebcdf81494a6/Formula/uncrustify.rb > uncrustify.rb && brew install uncrustify.rb && rm uncrustify.rb ``` Automatic Pre-Commit Hooks