13 lines
360 B
Bash
Executable File
13 lines
360 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source dependencies.sh
|
|
|
|
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
|
|
pip3 install --user PyYaml -q
|
|
pip3 install --user beautifulsoup4 -q
|
|
fi;
|
|
|
|
|