mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-19 21:28:37 +01:00
9c71c3bb4f
* Yarn to bun migration port * . * . * . * . * . * . * . * missed that * ... * can't have those * end of compat * port tg 91703 * we need to accept the eula * make sure to use basic * -f as JL suggested * Update dependencies.sh * push --------- Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
11 lines
170 B
Bash
Executable File
11 lines
170 B
Bash
Executable File
#!/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
|