hiroyuki-sato opened a new pull request, #46527:
URL: https://github.com/apache/arrow/pull/46527
### Rationale for this change
We are trying to implement shellcheck on all sh files in #44748.
### What changes are included in this PR?
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.
```
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]