Skip to content

Commit 5b043d7

Browse files
committed
Fix find check for executables
Apparently the fix in d08441b didn't catch a recent executable (#17965), but I've verified that this does indeed catch the executable
1 parent 86509d8 commit 5b043d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/tests.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ tidy:
284284
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
285285
$(Q)echo $(ALL_HS) \
286286
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
287-
$(Q)find $(S)src -type f -perm a+x \
287+
$(Q)find $(S)src -type f -perm +a+x \
288288
-not -name '*.rs' -and -not -name '*.py' \
289289
-and -not -name '*.sh' \
290290
| grep '^$(S)src/jemalloc' -v \

0 commit comments

Comments
 (0)