We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2909666 commit eb824a8Copy full SHA for eb824a8
1 file changed
dist/platforms/ubuntu/run_tests.sh
@@ -218,7 +218,7 @@ for platform in ${TEST_PLATFORMS//;/ }; do
218
cat "$FULL_ARTIFACTS_PATH/$platform.log"
219
220
if [[ $TEST_EXIT_CODE -eq 0 && "$platform" == "custom" ]]; then
221
- if [[ grep -q "ALL_TESTS_SUCCESSFUL" "$FULL_ARTIFACTS_PATH/$platform.log" && ! grep -q "TEST_FAILURE" "$FULL_ARTIFACTS_PATH/$platform.log" ]]; then
+ if grep -q "ALL_TESTS_SUCCESSFUL" "$FULL_ARTIFACTS_PATH/$platform.log" && ! grep -q "TEST_FAILURE" "$FULL_ARTIFACTS_PATH/$platform.log"; then
222
TEST_EXIT_CODE=0
223
else
224
TEST_EXIT_CODE=2
0 commit comments