Files
Anthias/static/spec/runner.sh
2016-09-21 16:02:39 +06:00

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