From 866f9a08bfcbac61b4e8a232e90dfb7d74b536a0 Mon Sep 17 00:00:00 2001 From: Artem Baranovskyi <artem.baranovsky1980@gmail.com> Date: Tue, 24 Sep 2024 12:09:10 +0300 Subject: [PATCH] Small PHPunit setting fix. --- install_moodle.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install_moodle.sh b/install_moodle.sh index f858f68..0a3a711 100755 --- a/install_moodle.sh +++ b/install_moodle.sh @@ -50,8 +50,7 @@ docker-compose exec moodle php ${MOODLE_BASE_DIR}/admin/cli/install.php \ # Locale setting inside the Docker container docker-compose exec -u root moodle bash -c "apt-get update && apt-get install -y locales && \ echo 'en_AU.UTF-8 UTF-8' >> /etc/locale.gen && \ - locale-gen && \ - update-locale" + locale-gen" # Composer installation to run phpunit tests docker-compose exec moodle bash -c " -- GitLab