Skip to content

Commit

Permalink
Allow use of paru in addition to yay as aur helper
Browse files Browse the repository at this point in the history
  • Loading branch information
eldyl committed Oct 13, 2024
1 parent 1e6346f commit d00fb2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/twenty-postgres/linux/provision-postgres-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d00fb2d

Please sign in to comment.