We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2fa596 commit 6364a66Copy full SHA for 6364a66
umbra/scripts/install-dependencies.sh
@@ -6,10 +6,10 @@ set -o pipefail
6
cd "$( cd "$( dirname "${BASH_SOURCE[0]:-${(%):-%x}}" )" >/dev/null 2>&1 && pwd )"
7
8
if [[ ! -z $(which yum) ]]; then
9
- sudo yum install -y postgresql-devel
+ sudo yum install -y postgresql-devel postgresql
10
elif [[ ! -z $(which apt-get) ]]; then
11
sudo apt-get update
12
- sudo apt-get install -y libpq5
+ sudo apt-get install -y libpq5 postgresql-client
13
else
14
echo "Operating system not supported, please install the dependencies manually"
15
fi
0 commit comments