Skip to content

Commit d72d79e

Browse files
committed
recognize initializing as a valid build status
1 parent 0cd18b6 commit d72d79e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

scripts/rc-builds.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ while [ $ELAPSED -lt $TIMEOUT ]; do
6060
elif [ "$BUILD_STATUS" = "2" ] || [ "$BUILD_STATUS" = "failed" ] || [ "$BUILD_STATUS" = "aborted" ]; then
6161
echo "Build failed with status: $BUILD_STATUS"
6262
exit 1
63+
elif [ "$BUILD_STATUS" = "initializing" ]; then
64+
echo "Build has started..."
6365
else
6466
echo "Unknown build status: $BUILD_STATUS"
6567
fi

0 commit comments

Comments
 (0)