From 6a773b0da93f0492e835d55d29902a5f12aec7e9 Mon Sep 17 00:00:00 2001 From: Jonathan Cormier Date: Tue, 12 Nov 2024 19:55:15 -0300 Subject: [PATCH] Update themes location dir for Redmine 6.0.1 --- assets/runtime/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/runtime/functions b/assets/runtime/functions index fff89c2b..ebe5fa33 100644 --- a/assets/runtime/functions +++ b/assets/runtime/functions @@ -1128,7 +1128,7 @@ install_plugins() { install_themes() { if [[ -d ${REDMINE_THEMES_DIR} ]]; then echo "Installing themes..." - rsync -avq --chown=${REDMINE_USER}:${REDMINE_USER} ${REDMINE_THEMES_DIR}/ ${REDMINE_INSTALL_DIR}/public/themes/ + rsync -avq --chown=${REDMINE_USER}:${REDMINE_USER} ${REDMINE_THEMES_DIR}/ ${REDMINE_INSTALL_DIR}/themes/ fi }