Skip to content

Commit

Permalink
Merge pull request #2 from brianpursley/pg16
Browse files Browse the repository at this point in the history
Updated Makefile to avoid failure due to installation of unconstrained version of pgrx
  • Loading branch information
brianpursley authored Oct 30, 2024
2 parents b08053a + 51a9367 commit e6579b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pg_smtp_client"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
publish = false

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ clean:

.PHONY: init
init:
@cargo install --locked cargo-pgrx
@cargo pgrx init --pg$(PG_VERSION) download
@cargo install --locked cargo-pgrx@0.11.4
@if ! cargo pgrx info version pg$(PG_VERSION) >/dev/null 2>1; then cargo pgrx init --pg$(PG_VERSION) download; else echo "pg$(PG_VERSION) already installed"; fi

.PHONY: lint
lint:
Expand Down

0 comments on commit e6579b1

Please sign in to comment.