mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
8 lines
195 B
Bash
Executable file
8 lines
195 B
Bash
Executable file
#!/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
|