Skip to content

Commit 3eede5e

Browse files
committed
Fix the support for site name with space
1 parent 18dbf71 commit 3eede5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ if [ ! -e "$MOODLE_SHARED/installed" -a ! -f "$MOODLE_SHARED/install.lock" ]; th
177177
--adminuser=$MOODLE_ADMIN_USER \
178178
--adminpass=$MOODLE_ADMIN_PASS \
179179
--adminemail=$MOODLE_ADMIN_EMAIL \
180-
--fullname=$MOODLE_SITE_FULLNAME \
181-
--shortname=$MOODLE_SITE_SHORTNAME
180+
--fullname="$MOODLE_SITE_FULLNAME" \
181+
--shortname="$MOODLE_SITE_SHORTNAME"
182182
if [ -n $SMTP_HOST ]; then
183183
sudo -E -u www-data php admin/cli/cfg.php --name=smtphosts --set=$SMTP_HOST
184184
fi

0 commit comments

Comments
 (0)