From a5c249c6705c6d2618d643a5bf11d30122430a8b Mon Sep 17 00:00:00 2001 From: Igor Randjelovic Date: Wed, 20 Jan 2021 14:32:53 +0100 Subject: [PATCH] Update build-docs.sh --- build-docs.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-docs.sh b/build-docs.sh index 960f13b02..a51d655e1 100755 --- a/build-docs.sh +++ b/build-docs.sh @@ -17,8 +17,11 @@ npm_install() { MARKER_FILE="./node_modules/installed" if [ ! -f "$MARKER_FILE" ] ; then + echo "no marker file calling npm install" npm install + echo "calling npm install @types/handlebars@4.0.33" npm install @types/handlebars@4.0.33 + echo "toucing marker file $MARKER_FILE" touch "$MARKER_FILE" echo "npm_install installed successfully" fi