From 0119cb32a7f1f31638b2c066b743a96defed4995 Mon Sep 17 00:00:00 2001 From: Dave Young Date: Thu, 2 Jun 2022 09:03:51 -0500 Subject: updated homebrew path (macos SIP compatible) and jq install --- contributors/devel/development.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributors/devel/development.md b/contributors/devel/development.md index 4b68a7f4..a871fc3e 100644 --- a/contributors/devel/development.md +++ b/contributors/devel/development.md @@ -155,14 +155,14 @@ system. [Follow these directions to install the tools](https://ryanparman.com/po In particular, this command installs the necessary packages: ```sh -brew install coreutils ed findutils gawk gnu-sed gnu-tar grep make +brew install coreutils ed findutils gawk gnu-sed gnu-tar grep make jq ``` You will want to include this block or something similar at the end of your `.bashrc` or shell init script: ```sh -GNUBINS="$(find /usr/local/opt -type d -follow -name gnubin -print)" +GNUBINS="$(find /opt/homebrew/opt -type d -follow -name gnubin -print)" for bindir in ${GNUBINS[@]} do -- cgit v1.2.3 From ad3356569fcfea03c626b2383271b6b2ffb19e70 Mon Sep 17 00:00:00 2001 From: Dave Young Date: Thu, 2 Jun 2022 10:41:35 -0500 Subject: use homebrew to find homebrew-installed bins --- contributors/devel/development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributors/devel/development.md b/contributors/devel/development.md index a871fc3e..527b5d77 100644 --- a/contributors/devel/development.md +++ b/contributors/devel/development.md @@ -162,7 +162,7 @@ You will want to include this block or something similar at the end of your `.bashrc` or shell init script: ```sh -GNUBINS="$(find /opt/homebrew/opt -type d -follow -name gnubin -print)" +GNUBINS="$(find `brew --prefix`/opt -type d -follow -name gnubin -print)" for bindir in ${GNUBINS[@]} do -- cgit v1.2.3