File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 11# Makefile
22
3+ STEAMPIPE_INSTALL_DIR ?= ~/.steampipe
4+
35PLATFORM =$(shell uname)
46
57install : build
68 if test -d ~ /.steampipe/db/14.2.0; then \
7- cp ./build-$(PLATFORM ) /steampipe_postgres_fdw--1.0.sql ~ /.steampipe /db/14.2.0/postgres/share/postgresql/extension/; \
8- cp ./build-$(PLATFORM ) /steampipe_postgres_fdw.control ~ /.steampipe /db/14.2.0/postgres/share/postgresql/extension/; \
9- cp ./build-$(PLATFORM ) /steampipe_postgres_fdw.so ~ /.steampipe /db/14.2.0/postgres/lib/postgresql/; \
9+ cp ./build-$(PLATFORM ) /steampipe_postgres_fdw--1.0.sql $( STEAMPIPE_INSTALL_DIR ) /db/14.2.0/postgres/share/postgresql/extension/; \
10+ cp ./build-$(PLATFORM ) /steampipe_postgres_fdw.control $( STEAMPIPE_INSTALL_DIR ) /db/14.2.0/postgres/share/postgresql/extension/; \
11+ cp ./build-$(PLATFORM ) /steampipe_postgres_fdw.so $( STEAMPIPE_INSTALL_DIR ) /db/14.2.0/postgres/lib/postgresql/; \
1012 fi
1113
1214build : prebuild.go
You can’t perform that action at this time.
0 commit comments