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 6bd35f5 commit 76a7138Copy full SHA for 76a7138
install_postgres_json_schema_extension.sh
@@ -1,20 +1,19 @@
1
#!/bin/bash
2
-apk add --update apt
3
apk add --update make
4
apk add --update git
5
6
# Clone the repository
7
git clone https://github.com/gavinwahl/postgres-json-schema/
8
9
-apk install libpq-dev
+apk add libpq-dev
10
# Move into the directory
11
cd postgres-json-schema
12
13
# Build the extension
14
make & make install
15
16
17
-apk install postgresql-client
+apk add postgresql-client
18
19
/bin/mkdir -p '/usr/local/share/postgresql/extension'
20
0 commit comments