Fixing a test.

This commit is contained in:
Manuel Canales Esparcia 2006-04-27 18:08:21 +00:00
parent 3ab7be7d41
commit 249a487d49

View file

@ -132,13 +132,15 @@ inline_doc
RUNMAKE) validation_str="x0x x1x"; validate_str; continue ;;
TEST) validation_str="x0x x1x x2x x3x"; validate_str; continue ;;
REPORT) validation_str="x0x x1x"; validate_str;
if [[ "${!config_param}" = "1" ]] && [[ `type -p bc` ]]; then
continue
else
echo -e " ${BOLD}The bc binary was not found${OFF}"
echo -e " The SBU and disk usage report creation will be skiped"
REPORT=0
continue
if [[ "${!config_param}" = "1" ]]; then
if [[ `type -p bc` ]]; then
continue
else
echo -e " ${BOLD}The bc binary was not found${OFF}"
echo -e " The SBU and disk usage report creation will be skiped"
REPORT=0
continue
fi
fi ;;
STRIP) validation_str="x0x x1x"; validate_str; continue ;;
VIMLANG) validation_str="x0x x1x"; validate_str; continue ;;