From 907d4a9d15fcc75cde2db4afe1374907e5fbcbb0 Mon Sep 17 00:00:00 2001 From: Felix Bartels Date: Tue, 6 Nov 2018 13:36:35 +0100 Subject: [PATCH] ci: committing changes for core --- core/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/core/Dockerfile b/core/Dockerfile index 093d711..4fad6c1 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -15,10 +15,8 @@ RUN \ dl_and_package_community "core"; \ fi; \ echo "deb [${KOPANO_REPOSITORY_FLAGS}] ${KOPANO_CORE_REPOSITORY_URL} ./" > /etc/apt/sources.list.d/kopano.list; \ - # save kopano version if supported kopano - if [ ! -f /kopano/buildversion ]; then \ - echo "core-${KOPANO_CORE_VERSION}" > /kopano/buildversion; \ - fi; \ + # save kopano version + echo "core-${KOPANO_CORE_VERSION}" > /kopano/buildversion; \ # install apt key if supported kopano if [ ${RELEASE_KEY_DOWNLOAD} -eq 1 ]; then \ curl -s -S -o - "${KOPANO_CORE_REPOSITORY_URL}/Release.key" | apt-key add -; \