1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 23:38:06 +02:00

Add openssl to dependencies

This commit is contained in:
Christopher Hoskin 2021-04-22 08:23:06 +01:00
parent 21b9b089b6
commit 9fa1e7dfe9

View file

@ -76,6 +76,8 @@ function check_dependencies() {
bash -c 'echo $BASH_VERSION'
elif [[ "perl" == "$binary_name" ]]; then
perl -e 'print $];'
elif [[ "openssl" == "$binary_name" ]]; then
openssl version
elif [[ "awk" == "$binary_name" ]]; then
if awk -Wversion > /dev/null 2>&1; then
awk -Wversion 2>&1 | head -n 1
@ -115,6 +117,7 @@ function check_dependencies() {
realpath
perl
awk
openssl
)
for binary in "${binaries[@]}"; do