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

7 lines
137 B
Bash

#!/usr/bin/env bash
if [[ "$(grep 'dataminer' pom.xml)" ]]; then
echo "dataminer dep found"
else
echo "dataminer dep not found"
fi