mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 01:49:19 +00: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;
|