Skip to content

Commit

Permalink
Add OS type Debian in setup-adapters.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
acvictor committed Apr 25, 2024
1 parent 6c0bcb4 commit 58f4e77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/setup-adapters.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
# /etc/os-release is a standard way to query various distribution
# information and is available everywhere
LINUX_DISTRIBUTION=$(. /etc/os-release && echo ${ID})
if [[ "$LINUX_DISTRIBUTION" == "ubuntu" ]]; then
if [[ "$LINUX_DISTRIBUTION" == "ubuntu" || "$LINUX_DISTRIBUTION" == "debian" ]]; then
apt install -y --no-install-recommends libxml2-dev libgsasl7-dev uuid-dev
# Dependencies of GCS, probably a workaround until the docker image is rebuilt
apt install -y --no-install-recommends libc-ares-dev libcurl4-openssl-dev
Expand Down

0 comments on commit 58f4e77

Please sign in to comment.