From f28e4e27facfee027091a0142c5d259a88358db2 Mon Sep 17 00:00:00 2001 From: Cat Flynn Date: Tue, 2 Mar 2021 18:44:59 +0000 Subject: [PATCH] bump wait time in build --- ci/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/build.sh b/ci/build.sh index 4fa8851..4ceffc0 100644 --- a/ci/build.sh +++ b/ci/build.sh @@ -22,7 +22,7 @@ open -g $editorpath --args \ -projectPath "$(pwd)/game" # wait for editor log to exist -tries=30 +tries=60 count=0 while [ ! -f $editorlogpath ] do @@ -32,8 +32,8 @@ do count=`expr $count + 1` if [ $count -eq $tries ] ; then - exit "early timeout - $tries seconds elapsed since launch attempt" - return 1 + echo "early timeout - $tries seconds elapsed since launch attempt" + exit 1 fi done