Files
prowler/include/awscli_detector
Toni de la Fuente a21bff31a5 create check files
2018-03-20 22:59:34 -04:00

8 lines
232 B
Plaintext

# AWS-CLI detector variable
AWSCLI=$(which aws)
if [ -z "${AWSCLI}" ]; then
echo -e "\n$RED ERROR!$NORMAL AWS-CLI (aws command) not found. Make sure it is installed correctly and in your \$PATH\n"
EXITCODE=1
exit $EXITCODE
fi