remove(tools,docker): stderr ignore making it hard to debug

This commit is contained in:
2026-02-22 21:06:47 +01:00
parent ce44dde2c6
commit 1f33854b27
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ fi
echo "Waiting for PostgreSQL to be ready..."
for i in {1..30}; do
if docker exec "$CONTAINER" psql -U "$POSTGRES_USER" -c '\q' 2>/dev/null; then
if docker exec "$CONTAINER" psql -U "$POSTGRES_USER" -c '\q'; then
echo "PostgreSQL is ready in container $CONTAINER"
exit 0
fi