Skip to content
Snippets Groups Projects
Commit 9427934a authored by JCount's avatar JCount Committed by GitHub
Browse files

Merge pull request #2555 from MikeMcQuaid/user_agent_osx

brew.sh: use OS X in user agent rather than macOS.
parents 9624c1ca f02d7b93
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,8 @@ then
# This is i386 even on x86_64 machines
[[ "$HOMEBREW_PROCESSOR" = "i386" ]] && HOMEBREW_PROCESSOR="Intel"
HOMEBREW_MACOS_VERSION="$(/usr/bin/sw_vers -productVersion)"
HOMEBREW_OS_VERSION="macOS $HOMEBREW_MACOS_VERSION"
# Don't change this from OS X to match what macOS itself does
HOMEBREW_OS_VERSION="OS X $HOMEBREW_MACOS_VERSION"
printf -v HOMEBREW_MACOS_VERSION_NUMERIC "%02d%02d%02d" ${HOMEBREW_MACOS_VERSION//./ }
if [[ "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "100900" &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment