brew config output
HOMEBREW_VERSION: 3.5.8
ORIGIN: https://github.com/Homebrew/brew
HEAD: ff9c2500195cc357d4a06f99d462f8d8a5d37892
Last commit: 5 days ago
Core tap ORIGIN: https://github.com/Homebrew/homebrew-core
Core tap HEAD: 882dc1d6e541367fdd4a9d79452dbc1c54b53066
Core tap last commit: 18 hours ago
Core tap branch: master
HOMEBREW_PREFIX: /opt/homebrew
HOMEBREW_AUTO_UPDATE_SECS: 86400
HOMEBREW_CASK_OPTS: [--appdir=~/Applications, --fontdir=/Library/Fonts]
HOMEBREW_MAKE_JOBS: 10
HOMEBREW_NO_ANALYTICS: set
Homebrew Ruby: 2.6.8 => /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby
CPU: 10-core 64-bit arm_firestorm_icestorm
Clang: 13.1.6 build 1316
Git: 2.37.1 => /opt/homebrew/bin/git
Curl: 7.79.1 => /usr/bin/curl
macOS: 12.5-arm64
CLT: 13.4.0.0.1.1651278267
Xcode: N/A
Rosetta 2: false
brew doctor output
Your system is ready to brew.
Verification
What were you trying to do (and why)?
I was following the installation steps to install.
What happened (include all command output)?
I got asked to add eval "$(/opt/homebrew/bin/brew shellenv)" to ~/.bash_profile or equivalent. I can't remember which file it was.
What did you expect to happen?
I expected for parameter expansion to be used correctly. See ${parameter:+word} from:
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_02
It seems, however, that parameter expansion is used wrongly:
|
echo "export PATH=\"${HOMEBREW_PREFIX}/bin:${HOMEBREW_PREFIX}/sbin\${PATH+:\$PATH}\";" |
|
echo "export MANPATH=\"${HOMEBREW_PREFIX}/share/man\${MANPATH+:\$MANPATH}:\";" |
Step-by-step reproduction instructions (by running brew commands)
brew configoutputbrew doctoroutputVerification
brew updateand am still able to reproduce my issue.brew doctorand that did not fix my problem.What were you trying to do (and why)?
I was following the installation steps to install.
What happened (include all command output)?
I got asked to add
eval "$(/opt/homebrew/bin/brew shellenv)"to~/.bash_profileor equivalent. I can't remember which file it was.What did you expect to happen?
I expected for parameter expansion to be used correctly. See
${parameter:+word}from:https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_02
It seems, however, that parameter expansion is used wrongly:
brew/Library/Homebrew/cmd/shellenv.sh
Lines 48 to 49 in 044fefd
Step-by-step reproduction instructions (by running
brewcommands)