diff --git a/bin/coco-brunch b/bin/coco-brunch index 6ebf85db5..9afe5e7c7 100755 --- a/bin/coco-brunch +++ b/bin/coco-brunch @@ -9,7 +9,7 @@ import sys current_directory = os.path.dirname(os.path.realpath(sys.argv[0])) coco_path = os.getenv("COCO_DIR",os.path.join(current_directory,os.pardir)) brunch_path = coco_path + os.sep + "node_modules" + os.sep + ".bin" + os.sep + "brunch" -subprocess.Popen("ulimit -n 10000",shell=True) +subprocess.Popen("ulimit -n 100000",shell=True) while True: print("Starting brunch. After the first compile, it'll keep running and watch for changes.") call(brunch_path + " w",shell=True,cwd=coco_path)