mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-26 08:53:13 +00:00
11 lines
176 B
Bash
Executable File
11 lines
176 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_COMPAT
|
|
nvm use $NODE_VERSION_COMPAT
|
|
fi
|