mirror of
https://github.com/kdabir/has.git
synced 2024-11-11 14:40:48 +01:00
6 lines
172 B
Bash
6 lines
172 B
Bash
command_name="gradle"
|
|
output=$(gradle -v 2>&1)
|
|
status=$?
|
|
version=$(echo "$output" | egrep -o "$SIMPLE_VERSIONING" | head -1)
|
|
|
|
_dq_report "$command_name" $status "$version"
|