gCubeActions/27-01-2021-grepString/testGrep.sh

7 lines
137 B
Bash
Raw Normal View History

2021-02-03 16:47:30 +01:00
#!/usr/bin/env bash
if [[ "$(grep 'dataminer' pom.xml)" ]]; then
echo "dataminer dep found"
2021-02-03 16:56:36 +01:00
else
echo "dataminer dep not found"
2021-02-03 16:47:30 +01:00
fi