brew.sh: use OS X in user agent rather than macOS.

This matches what Safari does on macOS 10.12 and is generally what
tools like Google Analytics expect the format to be.
This commit is contained in:
Mike McQuaid 2017-04-26 16:18:48 +01:00
parent c6c930174e
commit f02d7b93a7

View File

@ -100,7 +100,8 @@ then
# This is i386 even on x86_64 machines # This is i386 even on x86_64 machines
[[ "$HOMEBREW_PROCESSOR" = "i386" ]] && HOMEBREW_PROCESSOR="Intel" [[ "$HOMEBREW_PROCESSOR" = "i386" ]] && HOMEBREW_PROCESSOR="Intel"
HOMEBREW_MACOS_VERSION="$(/usr/bin/sw_vers -productVersion)" 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//./ } printf -v HOMEBREW_MACOS_VERSION_NUMERIC "%02d%02d%02d" ${HOMEBREW_MACOS_VERSION//./ }
if [[ "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "100900" && if [[ "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "100900" &&