Skip to content

Commit 6364a66

Browse files
committed
Umbra: Add CLI dependency
1 parent b2fa596 commit 6364a66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

umbra/scripts/install-dependencies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ set -o pipefail
66
cd "$( cd "$( dirname "${BASH_SOURCE[0]:-${(%):-%x}}" )" >/dev/null 2>&1 && pwd )"
77

88
if [[ ! -z $(which yum) ]]; then
9-
sudo yum install -y postgresql-devel
9+
sudo yum install -y postgresql-devel postgresql
1010
elif [[ ! -z $(which apt-get) ]]; then
1111
sudo apt-get update
12-
sudo apt-get install -y libpq5
12+
sudo apt-get install -y libpq5 postgresql-client
1313
else
1414
echo "Operating system not supported, please install the dependencies manually"
1515
fi

0 commit comments

Comments
 (0)