From d04363892c109278789f8f925fd0f89581cb4422 Mon Sep 17 00:00:00 2001 From: Benoit S Date: Sun, 29 Aug 2021 10:46:07 +0900 Subject: [PATCH] Add openssl in check_command --- tootpaste.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tootpaste.sh b/tootpaste.sh index e973e6f..415f616 100644 --- a/tootpaste.sh +++ b/tootpaste.sh @@ -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