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 ...
Describe the enhancement requested
This is the sub issue #44748.
Component(s)
Developer Tools