summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubernetes Prow Robot <k8s-ci-robot@users.noreply.github.com>2022-06-02 08:43:47 -0700
committerGitHub <noreply@github.com>2022-06-02 08:43:47 -0700
commit3e9befb7d0918ebd21fa3936ddb53752da64b4d7 (patch)
tree6f25555b25b5e34dab97eb325d37723732d37c6c
parent57c10045668bf8868d501b26b82ddc27f261a8b3 (diff)
parentad3356569fcfea03c626b2383271b6b2ffb19e70 (diff)
Merge pull request #6683 from daveoy/patch-1
updated homebrew path (macos SIP compatible) and jq install
-rw-r--r--contributors/devel/development.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/contributors/devel/development.md b/contributors/devel/development.md
index 4b68a7f4..527b5d77 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 `brew --prefix`/opt -type d -follow -name gnubin -print)"
for bindir in ${GNUBINS[@]}
do