mirror of
https://github.com/evilew/GS13-Citadel.git
synced 2026-06-08 23:53:19 +01:00
11 lines
162 B
Bash
Executable File
11 lines
162 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
|
|
nvm use $NODE_VERSION
|
|
fi
|