From b2b0382199042b1f1b2cfc0c7544c4fc12264ccd Mon Sep 17 00:00:00 2001 From: Felix Bartels Date: Fri, 12 Oct 2018 20:16:40 +0200 Subject: [PATCH] fix if casing for download_community_packages Signed-off-by: Felix Bartels --- core/Dockerfile | 2 +- webapp/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Dockerfile b/core/Dockerfile index b7e0816..d0afea8 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -41,7 +41,7 @@ COPY download_community.sh /kopano/download_community.sh RUN \ # community download [ ${DOWNLOAD_COMMUNITY_PACKAGES} -eq 1 ] && \ - /kopano/download_community.sh core && \ + /kopano/download_community.sh core; \ # install set -x && \ echo ${KOPANO_CORE_VERSION} > /kopano/buildversion && \ diff --git a/webapp/Dockerfile b/webapp/Dockerfile index 1b9a418..7234648 100644 --- a/webapp/Dockerfile +++ b/webapp/Dockerfile @@ -48,7 +48,7 @@ RUN \ # community download [ ${DOWNLOAD_COMMUNITY_PACKAGES} -eq 1 ] && \ /kopano/download_community.sh core && \ - /kopano/download_community.sh webapp && \ + /kopano/download_community.sh webapp; \ # install set -x && \ echo ${KOPANO_CORE_VERSION} > /kopano/buildversion && \