Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtime/functions
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ load_extensions() {
psql -U ${PG_USER} -d ${database} -c "CREATE EXTENSION IF NOT EXISTS unaccent;" >/dev/null 2>&1
fi

IFS_ORG=$IFS
local IFS_ORG=$IFS
IFS=,
for extension in ${DB_EXTENSION}; do
echo "‣ Loading ${extension} extension..."
Expand All @@ -334,7 +334,7 @@ create_database() {
echo "INFO! Database cannot be created on a $REPLICATION_MODE node. Skipping..."
;;
*)
IFS_ORG=$IFS
local IFS_ORG=$IFS
IFS=,
for database in ${DB_NAME}; do
echo "Creating database: ${database}..."
Expand Down