Skip to content
Snippets Groups Projects
Commit f3cc0596 authored by Martin Afanasjew's avatar Martin Afanasjew
Browse files

brew.sh: tweak HOMEBREW_PROCESSOR on Linux


`uname -p` seems to be less useful on Linux (Debian 8 yields `unknown`),
thus prefer `uname -m` on those systems to determine the processor type.

Closes #35.

Signed-off-by: default avatarMartin Afanasjew <martin@afanasjew.de>
parent 2ca97490
No related branches found
No related tags found
No related merge requests found
......@@ -74,9 +74,9 @@ then
fi
HOMEBREW_CURL="/usr/bin/curl"
HOMEBREW_PROCESSOR="$(uname -p)"
if [[ -n "$HOMEBREW_OSX" ]]
then
HOMEBREW_PROCESSOR="$(uname -p)"
HOMEBREW_PRODUCT="Homebrew"
HOMEBREW_SYSTEM="Macintosh"
# This is i386 even on x86_64 machines
......@@ -91,6 +91,7 @@ then
HOMEBREW_CURL="$HOMEBREW_PREFIX/opt/curl/bin/curl"
fi
else
HOMEBREW_PROCESSOR="$(uname -m)"
HOMEBREW_PRODUCT="${HOMEBREW_SYSTEM}brew"
[[ -n "$HOMEBREW_LINUX" ]] && HOMEBREW_OS_VERSION="$(lsb_release -sd 2>/dev/null)"
: "${HOMEBREW_OS_VERSION:=$(uname -r)}"
......
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