From 3163d6d00b0bf5a7bb2a144c49f8ac015f2d5869 Mon Sep 17 00:00:00 2001
From: gumida <gumida@users.noreply.github.com>
Date: Wed, 6 Mar 2024 14:51:01 +0100
Subject: [PATCH] fix: Fix indentation in bash script for docker postgres init
 (no-changelog) (#8819)

---
 docker/compose/withPostgres/init-data.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/compose/withPostgres/init-data.sh b/docker/compose/withPostgres/init-data.sh
index dffb61e84e..f98a972ed6 100755
--- a/docker/compose/withPostgres/init-data.sh
+++ b/docker/compose/withPostgres/init-data.sh
@@ -7,7 +7,7 @@ if [ -n "${POSTGRES_NON_ROOT_USER:-}" ] && [ -n "${POSTGRES_NON_ROOT_PASSWORD:-}
 		CREATE USER ${POSTGRES_NON_ROOT_USER} WITH PASSWORD '${POSTGRES_NON_ROOT_PASSWORD}';
 		GRANT ALL PRIVILEGES ON DATABASE ${POSTGRES_DB} TO ${POSTGRES_NON_ROOT_USER};
 		GRANT CREATE ON SCHEMA public TO ${POSTGRES_NON_ROOT_USER};
- EOSQL
+	EOSQL
 else
 	echo "SETUP INFO: No Environment variables given!"
 fi