From d992e1ea5edcca7b3d2f9e8d11bbcafb32461610 Mon Sep 17 00:00:00 2001 From: Igor Randjelovic Date: Wed, 20 Jan 2021 21:16:55 +0100 Subject: [PATCH] ci: fix npm_install for core on CI (docs) (#9156) --- build-docs.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-docs.sh b/build-docs.sh index dcf6cd329..c4f954946 100755 --- a/build-docs.sh +++ b/build-docs.sh @@ -16,6 +16,8 @@ npm_install() { MARKER_FILE="./node_modules/installed" if [ ! -f "$MARKER_FILE" ] ; then + # Fixes perm issue while installing + npm i -g npm@^6.13.6 npm install npm install @types/handlebars@4.0.33 touch "$MARKER_FILE"