From 985cf60affa8052141dde5460f8a066ac565a020 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 16 Feb 2021 17:08:47 +0100 Subject: [PATCH] Rename function and shuffle to top again --- entrypoint.sh.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh.tmpl b/entrypoint.sh.tmpl index 5461162..ed0e336 100755 --- a/entrypoint.sh.tmpl +++ b/entrypoint.sh.tmpl @@ -51,7 +51,7 @@ init_db() { fi } -install_extensions() { +init_extensions() { if [ ! -d /var/www/html/extensions/PluggableAuth ]; then git clone --depth 1 -b REL1_32 \ https://gerrit.wikimedia.org/r/p/mediawiki/extensions/PluggableAuth \ @@ -78,10 +78,10 @@ install_extensions() { main() { set -eu + init_extensions init_db init_composer composer_install - install_extensions } main