morningman commented on code in PR #16175: URL: https://github.com/apache/doris/pull/16175#discussion_r1089876363
########## docker/thirdparties/run-thirdparties-docker.sh: ########## @@ -117,7 +117,10 @@ echo "Components are: ${COMPONENTS}" echo "Container UID: ${CONTAINER_UID}" echo "Stop: ${STOP}" -COMPONENTS_ARR=(${COMPONENTS//,/ }) +OLD_IFS="${IFS}" +IFS=',' +read -r -a COMPONENTS_ARR <<<"${COMPONENTS}" +IFS="${OLD_IFS}" Review Comment: OK, I will modify it in next PR to save some regression test resource -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org