Update build-docs.sh

This commit is contained in:
Igor Randjelovic
2021-01-20 14:32:53 +01:00
committed by GitHub
parent 32d6fcf19e
commit a5c249c670

View File

@ -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