mirror of
https://github.com/Screenly/Anthias.git
synced 2026-01-27 15:39:11 -05:00
12 lines
246 B
Bash
Executable File
12 lines
246 B
Bash
Executable File
#!/usr/bin/env bash
|
|
for i in {1..10}; do
|
|
timeout 7 phantomjs static/spec/phantom-runner.js
|
|
last=$?
|
|
if [[ "$last" -ne "124" ]]; then
|
|
exit $last
|
|
fi
|
|
echo "Timeout reach. Retrying."
|
|
done
|
|
|
|
echo "Max retries reached."
|
|
exit 1 |