Skip to content

Commit 76a7138

Browse files
author
Damian Borowiecki
authored
Fixed apk add command
1 parent 6bd35f5 commit 76a7138

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

install_postgres_json_schema_extension.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
#!/bin/bash
2-
apk add --update apt
32
apk add --update make
43
apk add --update git
54

65
# Clone the repository
76
git clone https://github.com/gavinwahl/postgres-json-schema/
87

9-
apk install libpq-dev
8+
apk add libpq-dev
109
# Move into the directory
1110
cd postgres-json-schema
1211

1312
# Build the extension
1413
make & make install
1514

1615

17-
apk install postgresql-client
16+
apk add postgresql-client
1817

1918
/bin/mkdir -p '/usr/local/share/postgresql/extension'
2019

0 commit comments

Comments
 (0)