hiroyuki-sato opened a new pull request, #51284:
URL: https://github.com/apache/arrow/pull/51284
### Rationale for this change
This is the sub issue #44748.
* SC2086: Double quote to prevent globbing and word splitting.
```
shellcheck cpp/thirdparty/download_dependencies.sh
In cpp/thirdparty/download_dependencies.sh line 49:
source ${SOURCE_DIR}/versions.txt
^-----------^ SC2086 (info): Double quote to prevent globbing and
word splitting.
Did you mean:
source "${SOURCE_DIR}"/versions.txt
For more information:
https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing
...
```
### What changes are included in this PR?
* SC2086: Quote variables.
* Use wildcard file matching instead of specifying each file individually.
### 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]