Skip to content

[CI][Dev] Fix shellcheck error in the ci/scripts/ccache_fix_perms.sh #50510

Description

@hiroyuki-sato

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

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions