node-fontnik/scripts/install.sh
Mike Morris fd264dc0d6 Publish Node.js v6.x LTS binaries (#115)
* update build-glyphs help and building from source instructions

* test and build binaries for Node.js v6.x LTS instead of v5.x

* make sure we're using correct NODE_VERSION in install.md
2016-10-21 18:34:50 -04:00

17 lines
259 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -o pipefail
source ./scripts/install_mason.sh
node --version
npm --version
which node
if [[ ${COVERAGE} == true ]]; then
npm install --build-from-source --debug --clang;
else
npm install --build-from-source --clang;
fi;