mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-02-08 15:28:40 +00:00
## About The Pull Request - Node 22 LTS and Yarn 4.5.1 - Removes windows 7 compatibility support - Set to install for you on the next build - CI also bumped to Node LTS ## Why It's Good For The Game Oil change for TGUI. Up to date and fresh! ## Changelog N/A
11 lines
170 B
Bash
11 lines
170 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
source dependencies.sh
|
|
|
|
if [[ -e ~/.nvm/nvm.sh ]]; then
|
|
source ~/.nvm/nvm.sh
|
|
nvm install $NODE_VERSION_LTS
|
|
nvm use $NODE_VERSION_LTS
|
|
fi
|