Skip to content

Commit

Permalink
Merge pull request #3 from brianpursley/fix-make
Browse files Browse the repository at this point in the history
Fix typo in Makefile
  • Loading branch information
brianpursley authored Oct 31, 2024
2 parents e6579b1 + c21bdda commit a85cbd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ clean:
.PHONY: init
init:
@cargo install --locked [email protected]
@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
@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 a85cbd6

Please sign in to comment.