mirror of
https://github.com/chaijs/chai
synced 2024-11-14 15:57:10 +00:00
7 lines
121 B
Bash
Executable file
7 lines
121 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
# Wait for Connect to be ready before exiting
|
|
while [ ! -f $SAUCE_CONNECT_READY_FILE ]; do
|
|
sleep .5
|
|
done
|