2
1
mirror of https://github.com/kdabir/has.git synced 2024-09-18 17:01:29 +02:00
has/include/setup.sh

24 lines
323 B
Bash
Raw Normal View History

2014-03-04 23:16:26 +01:00
OK=0
KO=0
PASS='✔'
FAIL='✘'
if [[ $TERM == xterm-*color ]]; then
PASS="\E[32m$PASS\E[0m"
FAIL="\E[31m$FAIL\E[0m"
fi
# $1 command name
# $2 0 ok anything else
# $3 version
2014-03-04 23:16:26 +01:00
_dq_report () {
if [ "$2" -eq 0 ]; then
echo -e "$PASS $1 $3"
OK=$(($OK+1))
else
echo -e "$FAIL $1"
KO=$(($KO+1))
fi
2014-03-04 23:16:26 +01:00
}