CI: Remove extra bracket from script

pull/19273/head
Steven Powell 2024-07-16 11:50:44 -05:00 committed by Medya Ghazizadeh
parent 1760ee1882
commit 20825df3af
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ FINISHED_COUNT=$(\
| wc -l)
if [ ${STARTED_COUNT} -ne ${FINISHED_COUNT} ]; then
echo "Started environments are not all finished! Started: ${STARTED_LIST}, Finished: $(cat ${FINISHED_LIST}))"
echo "Started environments are not all finished! Started: ${STARTED_LIST}, Finished: $(cat ${FINISHED_LIST})"
exit 0
fi