commit 7a40102dc20b6e9d5b89855a0117e4261250e60a parent 6163c881a6c0a462f1ac37d17eeacb2085c5b925 Author: Christian Grothoff <christian@grothoff.org> Date: Mon, 22 Dec 2025 18:14:54 +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,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 \