mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-11 14:51:49 +00:00
7 lines
130 B
Bash
Executable File
7 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
die () { echo $@ ; exit 1; }
|
|
|
|
. ../../nvm.sh
|
|
[ "$(nvm current)" == `node -v` ] || die "Failed to find current version"
|