Files
linux-workspace/install/nvm-npm.sh
2026-06-03 15:56:57 +02:00

16 lines
292 B
Bash
Executable File

#!/bin/bash
# https://github.com/nvm-sh/nvm
set -E -o errexit -o nounset -o pipefail
if ! can_run nvm; then
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
source "$LWS/rc/nvm.sh"
fi
if ! can_run node; then
nvm install node
nvm use node
fi