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