Fixed small syntax error

pull/182/head
Nick Maltbie 2022-04-18 21:49:03 -04:00
parent 2bbdf7fbb2
commit 983c8944a9
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ for $platform in ${TEST_PLATFORMS//,/ }; do
echo "# $platform Results #"
echo "###########################"
echo ""
if [ $platform -ne "COMBINE_RESULTS" ]; then;
if [ $platform -ne "COMBINE_RESULTS" ]; then
cat "$FULL_ARTIFACTS_PATH/$platform-results.xml"
cat "$FULL_ARTIFACTS_PATH/$platform-results.xml" | grep test-run | grep Passed
fi
fi
done