Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2019-08-22 22:45:48 +0300
committeraxil <axil@gitlab.com>2019-08-22 22:45:48 +0300
commit6a98b879796b07d52dc4808a4c4557b838b4034a (patch)
tree8747ebed06c1955d495085c29177a268f4c3b446 /Dockerfile.master
parente83c3366fe1631cbd5b82b5c3f5679ce4f52d552 (diff)
Fix wrong location of CE docs
Diffstat (limited to 'Dockerfile.master')
-rw-r--r--Dockerfile.master2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.master b/Dockerfile.master
index b6491d94..fcf3498f 100644
--- a/Dockerfile.master
+++ b/Dockerfile.master
@@ -23,7 +23,7 @@ RUN for i in `find /source/public/ -name README.html`; do ln -sf README.html $(d
# Remove CE dir and symlink EE to CE
# https://gitlab.com/gitlab-org/gitlab-docs/issues/418
-RUN if [ -d "/source/public/ce/" ]; then cd /source/public/ce && rm -r ce && ln -s ee ce; fi
+RUN if [ -d "/source/public/ce/" ]; then cd /source/public/ && rm -r ce && ln -s ee ce; fi
# Remove tmp dir to save some space
RUN rm -rf /source/tmp