fix searching word

This commit is contained in:
Roberto Cirillo 2021-11-12 11:53:49 +01:00
parent 56c86d212c
commit 848446f451
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
out=`find . -name '*.java' -exec grep 'UmaJwtToken' /dev/null {} + || echo 'empty'`
out=`find . -name '*.java' -exec grep 'UmaJWTProvider' /dev/null {} + || echo 'empty'`
if [[ ["${out}" != "empty"] && "$(grep '\.java' <<< ${out})" ]]; then
echo "UmaJwtToken class found in "
echo "${out}"