File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
7
7
8
8
if [[ ! -z $( which yum) ]]; then
9
9
sudo yum install -y postgresql-devel
10
- elif [[ ! -z $( which apt) ]]; then
11
- sudo apt update
12
- sudo apt install -y libpq5
10
+ elif [[ ! -z $( which apt-get ) ]]; then
11
+ sudo apt-get update
12
+ sudo apt-get install -y libpq5
13
13
else
14
14
echo " Operating system not supported, please install the dependencies manually"
15
15
fi
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
7
7
8
8
if [[ ! -z $( which yum) ]]; then
9
9
sudo yum install -y postgresql-devel
10
- elif [[ ! -z $( which apt) ]]; then
11
- sudo apt update
12
- sudo apt install -y libpq5
10
+ elif [[ ! -z $( which apt-get ) ]]; then
11
+ sudo apt-get update
12
+ sudo apt-get install -y libpq5
13
13
else
14
14
echo " Operating system not supported, please install the dependencies manually"
15
15
fi
You can’t perform that action at this time.
0 commit comments