mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
cleaner error messages on Tiger. thanks Collin!
This commit is contained in:
2
skybreak
2
skybreak
@@ -18,7 +18,7 @@ if [ "$UNAME" != "Linux" -a "$UNAME" != "Darwin" ] ; then
|
||||
fi
|
||||
|
||||
if [ "$UNAME" = "Darwin" ] ; then
|
||||
if [ "i386" != $(uname -p) -o "1" != $(sysctl -n hw.cpu64bit_capable) ] ; then
|
||||
if [ "i386" != $(uname -p) -o "1" != $(sysctl -n hw.cpu64bit_capable 2>/dev/null || echo 0) ] ; then
|
||||
|
||||
# Can't just test uname -m = x86_64, because Snow Leopard can
|
||||
# return other values.
|
||||
|
||||
Reference in New Issue
Block a user