From e30d54723d98719ae8803885efdedbe7179f12bb Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Wed, 30 Jan 2013 11:35:59 +0000 Subject: [PATCH] Since a too low ulimit aborts the build, it's an error. --- common.jake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.jake b/common.jake index eb2b2dbdce..937e5a9acb 100644 --- a/common.jake +++ b/common.jake @@ -552,7 +552,7 @@ global.checkUlimit = function() if (Number(limit) < minUlimit) { - stream.print("\0red(\0bold(WARNING:\0)\0) Cappuccino may need to open more files than this terminal session currently allows (" + limit + "). Add the following line to your login configuration file (.bash_profile, .bashrc, etc.), start a new terminal session, then try again:\n"); + stream.print("\0red(\0bold(ERROR:\0)\0) Cappuccino may need to open more files than this terminal session currently allows (" + limit + "). Add the following line to your login configuration file (.bash_profile, .bashrc, etc.), start a new terminal session, then try again:\n"); stream.print("ulimit -n " + minUlimit); OS.exit(1); }