commit 3da6033ca9f5874720e269645e0b7ce0844ded46 parent e8ce112cd0b2a96a11ff1f8ef171f42352c448fa Author: Christian Grothoff <christian@grothoff.org> Date: Mon, 22 Dec 2025 18:14:10 +0100 -fix quotes Diffstat:
| M | contrib/ci/jobs/002-test/3-startdb.sh | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/ci/jobs/002-test/3-startdb.sh b/contrib/ci/jobs/002-test/3-startdb.sh @@ -1,8 +1,8 @@ #!/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" \ start \