mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-09 23:21:02 +01:00
12 lines
216 B
Bash
Executable File
12 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source dependencies.sh
|
|
|
|
if [ "$BUILD_TOOLS" = true ]; then
|
|
source ~/.nvm/nvm.sh
|
|
nvm install $NODE_VERSION
|
|
pip3 install --user PyYaml
|
|
pip3 install --user beautifulsoup4
|
|
fi;
|