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