From faba4dfe925888dd96def7ffe5a2ace5785d1c9c Mon Sep 17 00:00:00 2001 From: Luca Rullo Date: Fri, 9 Dec 2022 20:52:24 +0100 Subject: [PATCH] Fix: Copy themes and plugins --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 0bf7444..0a094f1 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,12 +14,12 @@ install() { install_themes() { echo "Install Themes" - cp -R /tmp/wordpress/themes/ /app/wordpress/wp-content/themes/ + cp -R /tmp/wordpress/themes/* /app/wordpress/wp-content/themes/ } install_plugins() { echo "Install Plugins" - cp -R /tmp/wordpress/themes/ /app/wordpress/wp-content/themes/ + cp -R /tmp/wordpress/plugins/* /app/wordpress/wp-content/plugins/ } config() {