Skip to content

Commit

Permalink
chore: shellcheck fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pcnc committed Jul 11, 2023
1 parent cc44930 commit e8ffe54
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ function initiate_upgrade {
# Needed for PostGIS, since it's compiled with Protobuf-C support now
echo "3. Installing libprotobuf-c1 and libicu66 if missing"
if [[ ! "$(apt list --installed libprotobuf-c1 | grep "installed")" ]]; then
apt-get update && apt --fix-broken install -y libprotobuf-c1 libicu66 || true
apt-get update -y
apt --fix-broken install -y libprotobuf-c1 libicu66 || true
fi

if [ "$IS_CI" = false ]; then
Expand Down

0 comments on commit e8ffe54

Please sign in to comment.