Re: Re: [PATCH 3/4] findcmd: define the user import finder function

2024-05-03 Thread Matheus Afonso Martins Moreira
> Why does this only find executable files? My intention was to eliminate as many non-candidate entries as possible. For example, developers might put data files among the code files, it would be useful if they were not searched. That's why I also set the no direcrories flag. I admit I was somew

Re: [PATCH 3/4] findcmd: define the user import finder function

2024-05-02 Thread Lawrence Velázquez
On Thu, May 2, 2024, at 6:22 PM, Matheus Afonso Martins Moreira wrote: > The find_user_import function looks for executable scripts > in a separate location meant for reusable libraries and modules, > separate from other executables. > > Signed-off-by: Matheus Afonso Martins Moreira > --- > findc

[PATCH 3/4] findcmd: define the user import finder function

2024-05-02 Thread Matheus Afonso Martins Moreira
The find_user_import function looks for executable scripts in a separate location meant for reusable libraries and modules, separate from other executables. Signed-off-by: Matheus Afonso Martins Moreira --- findcmd.c | 12 findcmd.h | 1 + 2 files changed, 13 insertions(+) diff --