From d00fb2dfe9dd9cdc29ca076b95e3f328f8e59063 Mon Sep 17 00:00:00 2001 From: Dylan Ullrich Date: Sun, 13 Oct 2024 10:02:03 -0700 Subject: [PATCH] Allow use of `paru` in addition to `yay` as aur helper --- packages/twenty-postgres/linux/provision-postgres-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-postgres/linux/provision-postgres-linux.sh b/packages/twenty-postgres/linux/provision-postgres-linux.sh index 73522b9ffeb3..84f047a72a82 100755 --- a/packages/twenty-postgres/linux/provision-postgres-linux.sh +++ b/packages/twenty-postgres/linux/provision-postgres-linux.sh @@ -98,7 +98,7 @@ elif [ "$PACKAGE_MANAGER" = "pacman" ]; then sudo pacman -S postgresql postgresql-libs curl --noconfirm || handle_error "Failed to install PostgreSQL or curl." echo_header $GREEN "Step [2/4]: Installing GraphQL for PostgreSQL on Arch..." - if ! yay -S --noconfirm pg_graphql; then + if ! yay -S --noconfirm pg_graphql && ! paru -S --noconfirm pg_graphql; then handle_error "Failed to install pg_graphql package from AUR." fi