mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-30 11:32:20 +00:00
* Mirror of tgstation's Common Build Tooling (#55373) * tgui 4.3 (#56080) Co-authored-by: Aleksej Komarov <stylemistake@gmail.com>
11 lines
162 B
Bash
11 lines
162 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
source dependencies.sh
|
|
|
|
if [[ -e ~/.nvm/nvm.sh ]]; then
|
|
source ~/.nvm/nvm.sh
|
|
nvm install $NODE_VERSION
|
|
nvm use $NODE_VERSION
|
|
fi
|