From 985d57afb9673b2f5acb1f12cbc13f230f6ec074 Mon Sep 17 00:00:00 2001 From: Even Holthe Date: Sun, 1 Oct 2017 21:30:41 +0200 Subject: [PATCH] Add ajv as an explicit dependency Thanks to @phenomax to pointing this out. Should probably be removed in the future once it's fixed upstream. See the following links for more info: - https://gitlab.com/gitlab-org/gitlab-ce/issues/38275 - https://gitlab.com/gitlab-org/gitlab-ce/issues/38050 - https://github.com/sameersbn/docker-gitlab/issues/1360 --- assets/build/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/build/install.sh b/assets/build/install.sh index 1d73e2bb..1e0ed45b 100755 --- a/assets/build/install.sh +++ b/assets/build/install.sh @@ -163,6 +163,7 @@ exec_as_git cp ${GITLAB_INSTALL_DIR}/config/database.yml.mysql ${GITLAB_INSTALL_ # Installs nodejs packages required to compile webpack exec_as_git yarn install --production --pure-lockfile +exec_as_git yarn add ajv@^4.0.0 echo "Compiling assets. Please be patient, this could take a while..." exec_as_git bundle exec rake gitlab:assets:compile USE_DB=false SKIP_STORAGE_VALIDATION=true