mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 22:31:51 +00:00
15 lines
225 B
Bash
Executable File
15 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
. ../../nvm.sh
|
|
|
|
# Remove the stuff we're clobbering.
|
|
[ -e ../../v0.8.6 ] && rm -R ../../v0.8.6
|
|
|
|
# Install from source
|
|
nvm install -s 0.8.6
|
|
|
|
# Check
|
|
[ -d ../../v0.8.6 ]
|
|
nvm run v0.8.6 --version | grep v0.8.6
|