commit 1c7d62ed6b2d69e2848ae69cf4dcb7c0c3cbbb7c parent 9c1d85c74ba620a9b5f39370a037a35bb21e19bc Author: Christian Grothoff <christian@grothoff.org> Date: Mon, 22 Dec 2025 18:14:33 +0100 -fix quotes Diffstat:
| M | contrib/ci/jobs/2-test/3-startdb.sh | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/ci/jobs/2-test/3-startdb.sh b/contrib/ci/jobs/2-test/3-startdb.sh @@ -1,7 +1,7 @@ #!/bin/bash set -evux -PG_BIN="$(pg_config --bindir)" -PG_ETC="$(pg_config --sharedir | sed 's|/share/postgresql|/etc/postgresql|") +PG_BIN=$(pg_config --bindir) +PG_ETC=$(pg_config --sharedir | sed 's|/share/postgresql|/etc/postgresql|') export PGPORT=5432 sudo -u postgres "${PG_BIN}/pg_ctl" \