You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1178 files inspected, no offenses detected
Issues were detected, but none were auto-fixable. Use another format to see them.
In /opt/homebrew/Library/Homebrew/brew.sh line 596:
[[ -n "${HOMEBREW_LINUX}" ]] && HOMEBREW_OS_VERSION="$(source /etc/os-release && echo "${PRETTY_NAME}")"
^-------------^ SC1091 (info): Not following: /etc/os-release: openBinaryFile: does not exist (No such file or directory)
^------------^ SC2154 (warning): PRETTY_NAME is referenced but not assigned.
^-------------^ SC1091 (info): Not following: /etc/os-release: openBinaryFile: does not exist (No such file or directory)
^------------^ SC2154 (warning): PRETTY_NAME is referenced but not assigned.
@MikeMcQuaid Do we want to also disable SC2154 for this line (i.e., # shellcheck disable=SC1091,SC2154)? #15877 only disabled SC1091, so I still see the SC2154 warning here:
In /opt/homebrew/Library/Homebrew/brew.sh line 598:
[[ -n "${HOMEBREW_LINUX}" ]] && HOMEBREW_OS_VERSION="$(source /etc/os-release && echo "${PRETTY_NAME}")"
^------------^ SC2154 (warning): PRETTY_NAME is referenced but not assigned.
For more information:
https://www.shellcheck.net/wiki/SC2154 -- PRETTY_NAME is referenced but not...
brew doctor
outputVerification
brew doctor
output" above saysYour system is ready to brew.
and am still able to reproduce my issue.brew update
twice and am still able to reproduce my issue.brew install wget
. If they do, open an issue at https://github.com/Homebrew/homebrew-core/issues/new/choose instead.brew config
outputWhat were you trying to do (and why)?
brew style --fix
What happened (include all command output)?
Inspecting 1178 files
..........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
1178 files inspected, no offenses detected
Issues were detected, but none were auto-fixable. Use another format to see them.
In /opt/homebrew/Library/Homebrew/brew.sh line 596:
[[ -n "${HOMEBREW_LINUX}" ]] && HOMEBREW_OS_VERSION="$(source /etc/os-release && echo "${PRETTY_NAME}")"
^-------------^ SC1091 (info): Not following: /etc/os-release: openBinaryFile: does not exist (No such file or directory)
^------------^ SC2154 (warning): PRETTY_NAME is referenced but not assigned.
For more information:
https://www.shellcheck.net/wiki/SC2154 -- PRETTY_NAME is referenced but not...
https://www.shellcheck.net/wiki/SC1091 -- Not following: /etc/os-release: o...
What did you expect to happen?
I expect not to have these errors:
^-------------^ SC1091 (info): Not following: /etc/os-release: openBinaryFile: does not exist (No such file or directory)
^------------^ SC2154 (warning): PRETTY_NAME is referenced but not assigned.
Step-by-step reproduction instructions (by running
brew
commands)The text was updated successfully, but these errors were encountered: