#!/bin/bash # install specific scripts mkdir -p /usr/local/bin for x in $INSTDIR/tools/scripts_sdk/*; do install --mode=755 $x /usr/local/bin/ done # install node.js and tools (npm, gulp, bower) if needed if [[ -z $(which node) ]]; then curl -sL https://deb.nodesource.com/setup_6.x | bash - apt-get install nodejs # issue SPEC-979 # this install fails with timeout for unknown reason - let's comment it #npm install --global gulp bower fi