mirror of
https://github.com/nvm-sh/nvm.git
synced 2026-02-15 19:17:52 +01:00
8 lines
175 B
Plaintext
8 lines
175 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
die () { echo $@ ; exit 1; }
|
||
|
|
|
||
|
|
. ../../../nvm.sh
|
||
|
|
|
||
|
|
[ "$(nvm_node_prefix)" = "node" ] || die '"nvm_node_prefix" did not return the string "node". why did this fail?!'
|