Skip to content

Commit

Permalink
Fix file-permissions-check in tools/tidy.sh
Browse files Browse the repository at this point in the history
Signed-off-by: Jiahao XU <[email protected]>
  • Loading branch information
NobodyXu committed Jan 6, 2025
1 parent 3bdda34 commit bcbd71a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/tidy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ if [[ -n "$(git ls-files '*.rs')" ]]; then
# Top-level hidden files/directories and tools/* are excluded from crates.io (ensured by the above check).
# TODO: fully respect exclude field in Cargo.toml.
case "${p}" in
.* | tools/* | target-specs/*) continue ;;
.* | tools/* | target-specs/* | main.sh) continue ;;
esac
if [[ -x "${p}" ]]; then
executables+="${p}"$'\n'
Expand Down

0 comments on commit bcbd71a

Please sign in to comment.