From f3157925addb2164e3ccfbcca03d7119c251a58b Mon Sep 17 00:00:00 2001 From: Alex Groleau Date: Sun, 13 Apr 2025 22:53:52 -0400 Subject: [PATCH] updates --- flow | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/flow b/flow index b85bd54..1571d8b 100755 --- a/flow +++ b/flow @@ -86,7 +86,8 @@ clean() { jspg-usage() { echo -e " ${CYAN}JSPG Commands:${RESET}" echo -e " prepare Check OS, Cargo, and PGRX dependencies." - echo -e " install [opts] Build and install the extension locally (dev)." + echo -e " install [opts] Run prepare, then build and install the extension locally." + echo -e " reinstall [opts] Run prepare, clean, then build and install the extension locally." echo -e " test [opts] Run pgrx integration tests." echo -e " clean Remove pgrx build artifacts." echo -e " build Build release artifacts into ./package/ (called by release)." @@ -99,8 +100,8 @@ jspg-flow() { case "$1" in prepare) base prepare; cargo-prepare; pgrx-prepare; return 0;; build) build; return 0;; - install) install; return 0;; - reinstall) reinstall; return 0;; + install) base prepare; cargo-prepare; pgrx-prepare; install "$@"; return 0;; + reinstall) base prepare; cargo-prepare; pgrx-prepare; install "$@"; return 0;; test) test; return 0;; package) package; return 0;; release) release; return 0;;