fix(BASH/INSTALLER): add missing deps for debian 10 (#5019)

This commit is contained in:
Patrick Lewis
2021-04-01 03:22:33 -07:00
committed by GitHub
parent ab42e0cb8f
commit 06ea234efa

View File

@@ -9,7 +9,7 @@ sudo apt-get update -y
if [[ $DEBIAN_VERSION -eq "10" ]]; then
sudo apt-get install -y git cmake make gcc g++ clang default-libmysqlclient-dev \
libssl-dev libbz2-dev libreadline-dev libncurses-dev mariadb-server \
libace-6.* libace-dev
libace-6.* libace-dev curl unzip
else # Debian 8 and 9 should work using this
sudo apt-get install -y git cmake make gcc g++ clang libmysqlclient-dev \
libssl1.0-dev libbz2-dev libreadline-dev libncurses-dev \