mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
9 lines
195 B
Text
9 lines
195 B
Text
|
#!/bin/bash
|
||
|
|
||
|
ulimit -n 10000
|
||
|
cd ~/Desktop/coco
|
||
|
until brunch w --config brunch.coffee; do
|
||
|
echo "Brunch Crashed. Recompiling entire project. Press Ctrl-C quickly to quit." >&2
|
||
|
sleep 1
|
||
|
done
|