Add libssl-dev for apt dependencies (#8512)

While building on Ubuntu (arm64). I had to manually install
`libssl-dev`.
Just added that in `script/linux`.
This commit is contained in:
hamza72x 2024-02-29 05:06:11 +06:00 committed by GitHub
parent b76e0d997e
commit 387c161d8c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,7 +12,7 @@ if [[ -n $apt ]]; then
libfontconfig-dev
libwayland-dev
libxkbcommon-x11-dev
openssl
libssl-dev
)
$maysudo "$apt" install -y "${deps[@]}"
exit 0