Files
GS13NG/tools/travis/install_build_tools.sh
AnturK 597111234e Enforces utf-8 encoding on all changelog files. (#34434)
* Enforces utf-8 encoding on all changelog files.

* Lets python3 use pip

* py2.7 begone
2018-01-14 12:39:49 -06:00

12 lines
366 B
Bash
Executable File

#!/bin/bash
set -e
if [ "$BUILD_TOOLS" = true ]; then
rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $NODE_VERSION
npm install -g gulp-cli
pip3 install --user PyYaml -q
pip3 install --user beautifulsoup4 -q
fi;