Merge branch 'fix/early-ci-timeout' into 'main'

Fix/early ci timeout

See merge request kernel-panic/revival!6
This commit is contained in:
Cinder Foster-Smith 2021-02-15 17:12:44 +00:00
commit 8388f7fd3e
1 changed files with 10 additions and 0 deletions

View File

@ -22,9 +22,19 @@ open -g $editorpath --args \
-projectPath "$(pwd)/game"
# wait for editor log to exist
tries=30
count=0
while [ ! -f $editorlogpath ]
do
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
# use a safe directory that is automatically removed by the shell when the script exists