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:
Diffstat (limited to 'Dockerfile.master')
-rw-r--r--Dockerfile.master4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile.master b/Dockerfile.master
index 39e72f43..480cd2be 100644
--- a/Dockerfile.master
+++ b/Dockerfile.master
@@ -21,9 +21,9 @@ RUN bundle exec nanoc compile -VV
# Symlink all README.html to index.html
RUN for i in `find /source/public/ -name README.html`; do ln -sf README.html $(dirname $i)/index.html; done
-# Remove CE dir and symlink EE to CE
+# Symlink EE to CE
# https://gitlab.com/gitlab-org/gitlab-docs/issues/418
-RUN if [ -d "/source/public/ce/" ]; then cd /source/public/ && rm -r ce && ln -s ee ce; fi
+RUN cd /source/public/ && rm -rf ce && ln -s ee ce
# Remove tmp dir to save some space
RUN rm -rf /source/tmp