commit e813483b3d1f7d3171b5227731fde83e999c5930 parent 9b7a8079fe932e28fa4109b1141601c78c732d90 Author: Christian Grothoff <christian@grothoff.org> Date: Mon, 22 Dec 2025 18:14:46 +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" \