From c47aa19a577150018d7d3786038c50024ba8f3b5 Mon Sep 17 00:00:00 2001 From: Zaid-edge Date: Fri, 24 Oct 2025 16:23:51 +0500 Subject: [PATCH] Update PATH for Postgres installation directory The current path points to the older community BitRock installer path, which is no longer used. Both the community and pgEdge now follow the native packaging layout, where /usr/pgsql-17/bin is the correct path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb46939..f020d32 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ You can also compile and install the extension from the source code, with the sa Make sure that your PATH environment variable includes the directory where `pg_config` (under your Postgres installation) is located. ``` -export PATH=/opt/pg17/bin:$PATH +export PATH=/usr/pgsql-17/bin:$PATH # compile make USE_PGXS=1