mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-02-17 08:50:58 -05:00
9 lines
163 B
Text
9 lines
163 B
Text
|
#!/bin/bash
|
||
|
|
||
|
sleep 5
|
||
|
cd ~/Desktop/coco
|
||
|
until node_modules/karma/bin/karma start; do
|
||
|
echo "Karma crashed with exit code $?. Respawning.." >&2
|
||
|
sleep 1
|
||
|
done
|