hiroyuki-sato opened a new issue, #50510:
URL: https://github.com/apache/arrow/issues/50510
### Describe the enhancement requested
This is the sub issue #44748.
* SC2086: Double quote to prevent globbing and word splitting
```
In ci/scripts/ccache_fix_perms.sh line 27:
find ${cache_dir} -type f -exec chmod 644 {} \;
^----------^ SC2086 (info): Double quote to prevent globbing and word
splitting.
Did you mean:
find "${cache_dir}" -type f -exec chmod 644 {} \;
For more information:
https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing
...
```
### Component(s)
Developer Tools
--
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]