From 2827a0363e6689a19886d64ce145bdb008e86ebe Mon Sep 17 00:00:00 2001 From: Corey Sotiropoulos Date: Mon, 7 Apr 2025 02:07:50 -0400 Subject: [PATCH] Fix issue with special character parsing --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1e1949b..8211c66 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -3,6 +3,6 @@ # Export XI_ variables from corresponding MARIADB_ variables. export XI_NETWORK_SQL_DATABASE=$MARIADB_DATABASE export XI_NETWORK_SQL_LOGIN=$MARIADB_USER -export XI_NETWORK_SQL_PASSWORD=$MARIADB_PASSWORD +export XI_NETWORK_SQL_PASSWORD="$MARIADB_PASSWORD" exec "$@"