mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 23:05:05 +00:00
8 lines
232 B
Plaintext
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
|