use homebrew to find homebrew-installed bins

This commit is contained in:
Dave Young 2022-06-02 10:41:35 -05:00
parent 0119cb32a7
commit ad3356569f
1 changed files with 1 additions and 1 deletions

View File

@ -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