You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Feature Request only contains 1 request (if you have multiple open multiple feature requests).
The idea
I was trying to add something like helpers/helpers.v2.1.d/* to additional_files, and it did not work.
After some local tests, find told me:
find: warning: '-name' matches against basenames only, but the given pattern contains a directory separator ('/'), thus the expression will evaluate to false all the time. Did you mean '-wholename'?
Checklist
The idea
I was trying to add something like
helpers/helpers.v2.1.d/*
toadditional_files
, and it did not work.After some local tests,
find
told me:So… Maybe use
-wholename
instead of-name
? :DEDIT: https://www.gnu.org/software/findutils/manual/html_node/find_html/Full-Name-Patterns.html says
-path
is more portable than-wholename
.The text was updated successfully, but these errors were encountered: