Add openssl in check_command

This commit is contained in:
Benoit S 2021-08-29 10:46:07 +09:00
parent b0d915e881
commit d04363892c

View file

@ -160,7 +160,7 @@ check_command(){
command -v "$1" > /dev/null
}
for command in $TOOTCTL curl grep awk cut sort; do
for command in $TOOTCTL curl grep awk cut sort openssl; do
check_command "$command" || (echo "$command not found, exiting..."; exit 1)
done