Skip to content

Commit

Permalink
build(extension): add a 'just install-sql-all' command
Browse files Browse the repository at this point in the history
  • Loading branch information
jgpruitt committed Feb 10, 2025
1 parent f91f5b7 commit 116e2ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion projects/extension/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ recipes in favor of the SQL-specific just recipes:
1. **Build pgai**: run `just ext build` to compile idempotent and incremental scripts
into `./projects/extension/sql/output/ai--*<current-version>.sql`.
1. **Install pgai**: run `just ext install-sql` to install `./projects/extension/sql/output/ai--*.sql` and `./projects/extension/sql/output/ai*.control` into your local
1. **Install pgai**: run `just ext install-sql-all` to install `./projects/extension/sql/output/ai--*.sql` and `./projects/extension/sql/output/ai*.control` into your local
Postgres environment.
### Develop Python in the pgai extension
Expand Down
3 changes: 3 additions & 0 deletions projects/extension/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ build-install:
install-sql:
@PG_BIN={{PG_BIN}} ./build.py install-sql

install-sql-all:
@PG_BIN={{PG_BIN}} ./build.py install-sql all

install-prior-py:
@./build.py install-prior-py

Expand Down

0 comments on commit 116e2ea

Please sign in to comment.