checkExist: added return code 3 for 'file not found'.

This commit is contained in:
Asif Bacchus 2018-09-07 01:53:17 -06:00
parent 65c34ba1d2
commit 20435c4e76
1 changed files with 3 additions and 0 deletions

View File

@ -176,6 +176,9 @@ function checkExist {
echo -e "\e[1;31m[`date +%Y-%m-%d` `date +%H:%M:%S`] --ERROR:" \
"${3} was not found--\e[0m" >> $logFile
quit 101
else
# file not found, return proper code
return 3
fi
elif [ "$1" = "verify" ]; then
if [ -e "$2" ]; then