hiroyuki-sato opened a new issue, #46526: URL: https://github.com/apache/arrow/issues/46526
### Describe the enhancement requested This is the sub issue #44748. SC2086 and SC2223 check require quoting like `${arrow_dir}` -> `"${arrow_dir}"`. ``` In ci/scripts/integration_arrow_build.sh line 25: : ${ARROW_INTEGRATION_CPP:=ON} ^--------------------------^ SC2223 (info): This default assignment may cause DoS due to globbing. Quote it. In ci/scripts/integration_arrow_build.sh line 29: . ${arrow_dir}/ci/scripts/util_log.sh ^----------^ SC2086 (info): Double quote to prevent globbing and word splitting. ``` ### Component(s) GLib -- 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: issues-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org