From d9ba291b123be4e85f76317ef23600a339b2354d Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Fri, 16 Jun 2017 15:31:09 -0700 Subject: [PATCH] Fixed output for Mac OS X installation --- setup/easy_install_bbp.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup/easy_install_bbp.sh b/setup/easy_install_bbp.sh index 138b0ac..2d6dbc9 100755 --- a/setup/easy_install_bbp.sh +++ b/setup/easy_install_bbp.sh @@ -267,4 +267,6 @@ echo "export BBP_VAL_DIR=$BASEDIR/bbp_val" echo "export PYTHONPATH=$BBPDIR/comps" echo "export BBP_DATA_DIR=$BASEDIR/bbp_data" echo "export PATH=$BBPDIR/comps:$BBPDIR/utils/batch:\$PATH" -echo "ulimit -s unlimited" +if [ "$(uname)" != "Darwin" ]; then + echo "ulimit -s unlimited" +fi