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>2023-09-25 12:27:06 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2023-09-25 12:27:06 +0300
commit33e721568cc5602db56aaa5cc60d75f54ed6c106 (patch)
treebb140af1dfb8bc9fd00f84c2b9bed756762652b1
parentaa42dcc6717c7c2494d98b68e7013b49cd274e5c (diff)
Fix backend search assignment in single.Dockerfileaxil-fix-search-assignment-dockerfile
-rw-r--r--dockerfiles/single.Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/dockerfiles/single.Dockerfile b/dockerfiles/single.Dockerfile
index 9d2f9253..ede4f1a4 100644
--- a/dockerfiles/single.Dockerfile
+++ b/dockerfiles/single.Dockerfile
@@ -61,7 +61,7 @@ RUN yarn install --frozen-lockfile \
&& yarn compile:css \
&& yarn compile:js
-RUN if [ "$SEARCH_BACKEND" = "lunr" ]; then make build-lunr-index; fi
+RUN if [ "$SEARCH_BACKEND" == "lunr" ]; then make build-lunr-index; fi
# Run post-processing on archive:
#