Files
Bubberstation/tools/ci/install_node.sh
Jeremiah c0133e4032 Reimplements node compatibility mode (#83141)
## 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
2024-05-11 01:17:07 -07:00

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