Update '27-01-2021-grepString/grepHomeLibrary.sh'
removed quotes
This commit is contained in:
parent
5689a9f011
commit
a78b837b99
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
out=`find . -name ‘pom.xml’ -exec grep ‘home-library’ /dev/null {} + || echo 'empty'`
|
||||
out=`find . -name pom.xml -exec grep ‘home-library’ /dev/null {} + || echo 'empty'`
|
||||
if [[ ["${out}" != "empty"] && "$(grep '\.java' <<< ${out})" ]]; then
|
||||
echo "${out}"
|
||||
echo “Home Library found"
|
||||
|
|
Loading…
Reference in New Issue