mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-02 21:11:57 +00:00
## About The Pull Request Puts a switch inside our build tools that will download the appropriate node version based on your OS. #82334 ## Why It's Good For The Game Closes #83076 Allows players to play the game
11 lines
176 B
Bash
11 lines
176 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
source dependencies.sh
|
|
|
|
if [[ -e ~/.nvm/nvm.sh ]]; then
|
|
source ~/.nvm/nvm.sh
|
|
nvm install $NODE_VERSION_COMPAT
|
|
nvm use $NODE_VERSION_COMPAT
|
|
fi
|