Update '27-01-2021-grepString/grepHomeLibrary.sh'

removed quotes
This commit is contained in:
Roberto Cirillo 2021-03-09 15:14:31 +01:00
parent 5689a9f011
commit a78b837b99
1 changed files with 1 additions and 1 deletions

View File

@ -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"