In azure.yml script, I would like to recursively search for a folder that ends with _test in $(System.DefaultWorkingDirectory)
So far, tried out
[ -d "**/$(System.DefaultWorkingDirectory)/**/?(*_test)" ]
and
[ -d "$(System.DefaultWorkingDirectory)/**/*_test" ]
However, both patterns are not working.
Is it possible to do recursive search for a folder in $(System.DefaultWorkingDirectory)?
Can you please suggest a suitable method to search for folders ending with _test in $(System.DefaultWorkingDirectory)?
Thank you!