Fix/early ci timeout

This commit is contained in:
Cat Flynn 2021-02-15 17:12:44 +00:00 committed by Cinder Foster-Smith
parent baefee4a00
commit 6717be82f9
1 changed files with 10 additions and 0 deletions

View File

@ -22,9 +22,19 @@ open -g $editorpath --args \
-projectPath "$(pwd)/game" -projectPath "$(pwd)/game"
# wait for editor log to exist # wait for editor log to exist
tries=30
count=0
while [ ! -f $editorlogpath ] while [ ! -f $editorlogpath ]
do do
sleep 1 sleep 1
# decrement
count=`expr $count + 1`
if [ $count -eq $tries ] ; then
exit "early timeout - $tries seconds elapsed since launch attempt"
return 1
fi
done done
# use a safe directory that is automatically removed by the shell when the script exists # use a safe directory that is automatically removed by the shell when the script exists