mirror of
https://github.com/Alfresco/SearchServices.git
synced 2026-09-16 18:12:56 +00:00
MNT-22377 Fix cross locale enabling condition in Dockerfile for Search Services (Python generator)
This commit is contained in:
@@ -30,7 +30,7 @@ RUN if [ "${SEARCH_LOG_LEVEL}" != "" ] ; then \
|
||||
fi
|
||||
|
||||
# Enable cross locale configuration if requested.
|
||||
RUN if [ "${ENABLE_CROSS_LOCALE}" != "" ] ; then \
|
||||
RUN if [[ "${ENABLE_CROSS_LOCALE}" == "True" ]] ; then \
|
||||
sed -i '/^bash.*/i sed -i "'"/alfresco.cross.locale.datatype/s/^#//g"'" $${DIST_DIR}/solrhome/conf/shared.properties\n' \
|
||||
$${DIST_DIR}/solr/bin/search_config_setup.sh; \
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user